Skip to content

Commit c263c66

Browse files
authored
fix: github release workflow action (#3)
1 parent caddb36 commit c263c66

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/cd-release.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Continuous Deployment
1+
name: Continuous Deployment (Release)
22

33
on:
44
push:
@@ -30,17 +30,16 @@ jobs:
3030
- name: Install dependencies
3131
run: pnpm install --frozen-lockfile
3232

33-
- name: Run standard-version
34-
run: pnpm run release
35-
3633
- name: Push release commit and tag
3734
run: |
3835
git config user.name "github-actions[bot]"
3936
git config user.email "github-actions[bot]@users.noreply.github.com"
40-
git push --follow-tags
4137
env:
4238
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4339

40+
- name: Run standard-version
41+
run: pnpm run release
42+
4443
- name: Build
4544
run: pnpm run build
4645

0 commit comments

Comments
 (0)