We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27e238f commit 05e897cCopy full SHA for 05e897c
.github/workflows/bump_and_build.yml
@@ -146,8 +146,9 @@ jobs:
146
git config user.name "github-actions[bot]"
147
git config user.email "github-actions[bot]@users.noreply.github.com"
148
git remote add origin "https://x-access-token:${GITHUB_TOKEN}@github.com/${{ github.repository }}.git"
149
- git fetch
150
- git checkout -b "${{ github.ref_name }}"
+ git fetch origin
+ git checkout -b "${{ github.ref_name }}" "origin/${{ github.ref_name }}"
151
+ git pull origin "${{ github.ref_name }}"
152
git add .
153
git commit -m "chore(release): ${{ needs.bump-version.outputs.new_version }}"
154
- name: Push changes and tag
0 commit comments