We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e557225 commit e3adc8bCopy full SHA for e3adc8b
2 files changed
.github/workflows/release.yaml
@@ -0,0 +1,27 @@
1
+# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
2
+
3
+name: "Release"
4
5
+on:
6
+ push:
7
+ branches:
8
+ - "master"
9
10
+jobs:
11
+ tests:
12
+ name: "Create Release"
13
14
+ runs-on: "ubuntu-latest"
15
16
+ steps:
17
+ - name: "Checkout"
18
+ uses: "actions/checkout@v3"
19
20
+ - uses: "actions/setup-node@v3"
21
+ with:
22
+ node-version: 'lts/*'
23
24
+ - name: "Run semantic-release"
25
+ env:
26
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27
+ run: npx semantic-release
.releaserc
@@ -0,0 +1,11 @@
+{
+ "plugins": [
+ "@semantic-release/commit-analyzer",
+ "@semantic-release/release-notes-generator",
+ "@semantic-release/github"
+ ],
+ "branches": [
+ "master"
+ tagFormat: '${version}',
+}
0 commit comments