Skip to content

Commit

Permalink
chore: add debug logs on release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
junners committed Aug 4, 2024
1 parent 59d9a76 commit e8ad5aa
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/generate-RELEASE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,17 @@ jobs:
npm install
git config --global user.name ${{ vars.USER_NAME }}
git config --global user.email ${{ vars.USER_EMAIL }}
echo "install done"
git add .
echo "add done"
git commit -m "chore(release): ${{ steps.generate-release-number.outputs.NEW_VER }} [skip ci]" --no-verify
echo "commit done"
git push origin master
echo "push done"
git tag v${{ steps.generate-release-number.outputs.NEW_VER }}
echo "tag done"
git push --tags
echo "tag push done"
- run: |
cd out
npm publish
Expand Down

0 comments on commit e8ad5aa

Please sign in to comment.