Skip to content

Commit

Permalink
fix: try correct push
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Oct 25, 2024
1 parent e4ea1da commit 0bc5439
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/bump_and_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,16 @@ jobs:
run: pnpm build
- name: Verify Web
run: pnpm verify:web
- name: Setup Git
run: |
git init
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git remote add origin "https://github.com/${{ github.repository }}.git"
git fetch
git checkout -b "${{ github.ref_name }}"
git add .
git commit -m "chore(release): ${{ needs.bump-version.outputs.new_version }}"
- name: Push changes and tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 0bc5439

Please sign in to comment.