Skip to content

Commit

Permalink
fix: fix tag push in publish step
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Fields committed Jun 17, 2020
1 parent 8eea3dc commit 21d303a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Tag
run: git tag -f v${MAJOR_VERSION} && git push origin v${MAJOR_VERSION}
run: git tag -f v${MAJOR_VERSION} && git push -f origin v${MAJOR_VERSION}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MAJOR_VERSION: ${{ steps.semantic.outputs.new_release_major_version }}

0 comments on commit 21d303a

Please sign in to comment.