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 c70b26c + 6be0cec commit be8b0fdCopy full SHA for be8b0fd
.github/workflows/major-version-updater.yml
@@ -13,14 +13,14 @@ permissions:
13
contents: write
14
jobs:
15
update_tag:
16
- 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.inputs.TAG_NAME || github.ref }} changes
17
runs-on: ubuntu-latest
18
steps:
19
- name: Checkout Repo
20
uses: actions/[email protected]
21
with:
22
fetch-tags: true
23
- ref: ${ TAG_NAME }
+ ref: ${{ github.event.inputs.TAG_NAME || github.ref }}
24
- name: version
25
id: version
26
run: |
0 commit comments