We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a8594af + fa4b39d commit 3904db7Copy full SHA for 3904db7
.github/workflows/release.yml
@@ -0,0 +1,21 @@
1
+name: Release Package
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ node-version:
12
+ - 16.x
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v3
16
+ with:
17
+ fetch-depth: 0
18
+ - name: Release
19
+ env:
20
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
+ run: npx semantic-release
.releaserc
@@ -0,0 +1,11 @@
+{
+ "branches": [
+ "main"
+ ],
+ "ci": true,
+ "plugins": [
+ "@semantic-release/commit-analyzer",
+ "@semantic-release/release-notes-generator",
+ "@semantic-release/github"
+ ]
+}
0 commit comments