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.
2 parents 8d00517 + a097f52 commit cda22ceCopy full SHA for cda22ce
.github/workflows/release-new-version.yml
@@ -15,16 +15,18 @@ on:
15
16
env:
17
TAG_NAME: ${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }}
18
-permissions:
19
- contents: write
20
21
jobs:
22
update_tag:
23
name: Update the major tag to include the ${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }} changes
24
runs-on: ubuntu-latest
25
environment: deploy
+ permissions:
+ contents: write
26
steps:
27
+ - uses: actions/checkout@v3
28
- name: Update the ${{ env.TAG_NAME }} tag
- uses: actions/publish-action@v0.2.2
29
+ id: update-major-tag
30
+ uses: actions/publish-action@v0.3.0
31
with:
32
source-tag: ${{ env.TAG_NAME }}
0 commit comments