We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc8ba30 commit f4d851fCopy full SHA for f4d851f
.github/workflows/release-new-action-version.yml
@@ -2,20 +2,15 @@ name: Release new action version
2
on:
3
release:
4
types: [released]
5
- workflow_dispatch:
6
- inputs:
7
- TAG_NAME:
8
- description: 'Tag name that the major tag will point to'
9
- required: true
10
11
env:
12
- TAG_NAME: ${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }}
+ TAG_NAME: ${{ github.event.release.tag_name }}
13
permissions:
14
contents: write
15
16
jobs:
17
update_tag:
18
- name: Update the major tag to include the ${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }} changes
+ name: Update the major tag to include the ${{ github.event.release.tag_name }} changes
19
environment:
20
name: releaseNewActionVersion
21
runs-on: ubuntu-latest
0 commit comments