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 0b784fe commit 7564a32Copy full SHA for 7564a32
1 file changed
.github/workflows/release-please.yml
@@ -18,7 +18,17 @@ jobs:
18
with:
19
fetch-depth: 0
20
- name: Run Release Please
21
+ id: release
22
uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38
23
24
config-file: release-please-config.json
25
manifest-file: .release-please-manifest.json
26
+ - name: Update moving major tag
27
+ if: ${{ steps.release.outputs.release_created }}
28
+ run: |
29
+ major="${{ steps.release.outputs.major }}"
30
+ tag="v${major}"
31
+ git config user.name "github-actions[bot]"
32
+ git config user.email "github-actions[bot]@users.noreply.github.com"
33
+ git tag -f "$tag"
34
+ git push -f origin "$tag"
0 commit comments