Skip to content

fix: on-tag workflow #697

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/on-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,12 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- id: version
run: echo "version=$(echo ${{ github.ref }} | sed 's/refs\/tags\/v//')" >> $GITHUB_OUTPUT
- name: setup git config
run: |
git config user.name "Gitify Version Bot"
git config user.email "<>"
git config user.name github-actions
git config user.email [email protected]
- run: git checkout -b "bump/${{ steps.version.outputs.version }}"
- run: pnpm version ${{ steps.version.outputs.version }}
- run: git push origin "bump/${{ steps.version.outputs.version }}"
Expand Down