Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
fix(build): add message to tag
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed Nov 25, 2020
1 parent 0961329 commit b467439
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ jobs:
git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}; echo ok
git push origin :v${{ steps.release.outputs.major }}; echo ok
git push origin :v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}; echo ok
git tag -a v${{ steps.release.outputs.major }}
git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}
git tag -a v${{ steps.release.outputs.major }} -m "Release v${{ steps.release.outputs.major }}"
git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m "Release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}"
git push origin v${{ steps.release.outputs.major }}
git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }};
if: ${{ steps.release.outputs.release_created }}

0 comments on commit b467439

Please sign in to comment.