Skip to content

Commit

Permalink
fix(ci): add tagging step back
Browse files Browse the repository at this point in the history
  • Loading branch information
mcchrish committed Aug 8, 2024
1 parent 9cf9de9 commit effd432
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,13 @@ jobs:
- uses: googleapis/release-please-action@v4
with:
release-type: simple
- name: tag stable versions
if: ${{ steps.release.outputs.release_created }}
run: |
git config user.name github-actions[bot]
git config user.email github-actions[bot]@users.noreply.github.com
git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/google-github-actions/release-please-action.git"
git tag -d stable || true
git push origin :stable || true
git tag -a stable -m "Last Stable Release"
git push origin stable

0 comments on commit effd432

Please sign in to comment.