Skip to content

Commit fcc8550

Browse files
committed
lint
1 parent 6f7bd88 commit fcc8550

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

.github/workflows/release-new-action-version.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,17 @@ name: Release new action version
33
on:
44
release:
55
types: [released]
6-
workflow_dispatch:
7-
inputs:
8-
TAG_NAME:
9-
description: 'Tag name that the major tag will point to'
10-
required: true
116

127
env:
13-
TAG_NAME: ${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }}
8+
TAG_NAME: ${{ github.event.release.tag_name }}
149
permissions:
1510
contents: write
1611

1712
jobs:
1813
update_tag:
1914
name:
20-
Update the major tag to include the ${{ github.event.inputs.TAG_NAME ||
21-
github.event.release.tag_name }} changes
22-
environment:
23-
name: releaseNewActionVersion
15+
Update the major tag to include the ${{ github.event.release.tag_name }}
16+
changes
2417
runs-on: ubuntu-latest
2518
steps:
2619
- name: Update the ${{ env.TAG_NAME }} tag

0 commit comments

Comments
 (0)