Skip to content

Commit

Permalink
Merge pull request #20 from godatadriven/release-more-version-tags
Browse files Browse the repository at this point in the history
Adding force flag for tags
  • Loading branch information
pgoslatara authored Jul 10, 2024
2 parents bf37130 + 73967eb commit 78c48e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@
run: |
git config --global user.email "[email protected]"
git config --global user.name "github-actions[bot]"
git tag \
git tag -f \
-a v${{ steps.version.outputs.version }} \
-m "v${{ steps.version.outputs.version }}"
git push origin "v${{ steps.version.outputs.version }}"
git tag \
git tag -f \
-a v${{ steps.version.outputs.major }}.${{ steps.version.outputs.minor }} \
-m "v${{ steps.version.outputs.major }}.${{ steps.version.outputs.minor }}"
git push origin "v${{ steps.version.outputs.major }}.${{ steps.version.outputs.minor }}"
git tag \
git tag -f \
-a v${{ steps.version.outputs.major }} \
-m "v${{ steps.version.outputs.major }}"
git push origin "v${{ steps.version.outputs.major }}"
Expand Down

0 comments on commit 78c48e3

Please sign in to comment.