We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cf9de9 commit 1acd87eCopy full SHA for 1acd87e
.github/workflows/ci.yml
@@ -105,3 +105,13 @@ jobs:
105
- uses: googleapis/release-please-action@v4
106
with:
107
release-type: simple
108
+ - name: tag stable versions
109
+ if: ${{ steps.release.outputs.release_created }}
110
+ run: |
111
+ git config user.name github-actions[bot]
112
+ git config user.email github-actions[bot]@users.noreply.github.com
113
+ git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/google-github-actions/release-please-action.git"
114
+ git tag -d stable || true
115
+ git push origin :stable || true
116
+ git tag -a stable -m "Last Stable Release"
117
+ git push origin stable
0 commit comments