We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9c05fe commit 2341296Copy full SHA for 2341296
.github/workflows/release_please.yml
@@ -20,3 +20,16 @@ jobs:
20
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
21
manifest-file: ".release-please-manifest.json"
22
config-file: ".release-please-config.json"
23
+
24
+ - name: Checkout code
25
+ if: ${{ steps.release-please.outputs.release_created }}
26
+ uses: actions/checkout@v4
27
28
+ - name: Update major version tag
29
30
+ run: |
31
+ VERSION=${{ steps.release-please.outputs.major }}
32
+ git config user.name "github-actions[bot]"
33
+ git config user.email "github-actions[bot]@users.noreply.github.com"
34
+ git tag -fa "v${VERSION}" -m "Update v${VERSION} to ${{ steps.release-please.outputs.tag_name }}"
35
+ git push origin "v${VERSION}" --force
0 commit comments