We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3fc9aa3 + f4d851f commit 4bc8754Copy full SHA for 4bc8754
.github/workflows/release-new-action-version.yml
@@ -0,0 +1,23 @@
1
+name: Release new action version
2
+on:
3
+ release:
4
+ types: [released]
5
+
6
+env:
7
+ TAG_NAME: ${{ github.event.release.tag_name }}
8
+permissions:
9
+ contents: write
10
11
+jobs:
12
+ update_tag:
13
+ name: Update the major tag to include the ${{ github.event.release.tag_name }} changes
14
+ environment:
15
+ name: releaseNewActionVersion
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Update the ${{ env.TAG_NAME }} tag
19
+ id: update-major-tag
20
+ uses: actions/publish-action@v0.3.0
21
+ with:
22
+ source-tag: ${{ env.TAG_NAME }}
23
+ slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
0 commit comments