We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caddb36 commit c263c66Copy full SHA for c263c66
1 file changed
.github/workflows/cd-release.yml
@@ -1,4 +1,4 @@
1
-name: Continuous Deployment
+name: Continuous Deployment (Release)
2
3
on:
4
push:
@@ -30,17 +30,16 @@ jobs:
30
- name: Install dependencies
31
run: pnpm install --frozen-lockfile
32
33
- - name: Run standard-version
34
- run: pnpm run release
35
-
36
- name: Push release commit and tag
37
run: |
38
git config user.name "github-actions[bot]"
39
git config user.email "github-actions[bot]@users.noreply.github.com"
40
- git push --follow-tags
41
env:
42
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43
+ - name: Run standard-version
+ run: pnpm run release
+
44
- name: Build
45
run: pnpm run build
46
0 commit comments