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 5508c80 + f30c14d commit b29ebcdCopy full SHA for b29ebcd
.github/workflows/ci.yml
@@ -64,4 +64,16 @@ jobs:
64
65
- name: 'Switch back to main branch'
66
run: |
67
- git checkout main
+ git checkout main
68
+ create-github-release:
69
+ name: Create Github release document
70
+ runs-on: ubuntu-latest
71
+ needs: build
72
+ steps:
73
+ - name: Checkout code
74
+ uses: actions/checkout@v2
75
+
76
+ - name: Semantic Release
77
+ run: npx [email protected]
78
+ env:
79
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package.json
@@ -49,5 +49,10 @@
49
"serve": "^14.2.1",
50
"tailwindcss": "^3",
51
"typescript": "^5"
52
+ },
53
+ "release": {
54
+ "branches": [
55
+ "main"
56
+ ]
57
}
58
0 commit comments