Skip to content

Commit

Permalink
fix: changelog removed tags
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosdevpereira committed Oct 13, 2022
1 parent 2c6cafd commit 11ef687
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 243 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,12 @@ jobs:
git config user.email carlos@carlosdevpereira.com
pnpm install && pnpm build
git add dist/** -f
git commit -m "chore: rebuild action"
git tag -d v${{ steps.release.outputs.major }} || true
git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
git push origin :v${{ steps.release.outputs.major }} || true
git push origin :v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
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 }}
git push origin v${{ steps.release.outputs.major }} -f
git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -f
Loading

0 comments on commit 11ef687

Please sign in to comment.