Skip to content

Commit

Permalink
fix: release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
niracler committed Dec 20, 2023
1 parent 5d2dd77 commit d83e86f
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,32 @@ jobs:
uses: actions/checkout@v2
with:
# get all history so we can get the correct version number
fetch-depth: 0
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
node-version: "18"

- name: Generate new version and changelog
run: npx standard-version
env:
# 标准版本使用GITHUB_TOKEN来自动创建tag
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Push changes
- name: Configure Git
run: |
git config --global user.email "[email protected]
git config --global user.name "niracler"
git push --follow-tags origin main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Tag the new version
run: |
VERSION=$(node -p "require('./package.json').version")
git tag v$VERSION
git push origin v$VERSION
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
env:
Expand Down

0 comments on commit d83e86f

Please sign in to comment.