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.
1 parent 6962927 commit a0bfa77Copy full SHA for a0bfa77
.github/workflows/major-version-updater.yml
@@ -31,5 +31,8 @@ jobs:
31
{ echo "tag=${tag}"; echo "version=${version}"; echo "major=${major}"; } >> "$GITHUB_OUTPUT"
32
- name: force update major tag
33
run: |
34
- git tag -f v${{ steps.version.outputs.major }} ${{ steps.version.outputs.tag }}
35
- git push -f origin v${{ steps.version.outputs.major }}
+ git tag -f v${STEPS_VERSION_OUTPUTS_MAJOR} ${STEPS_VERSION_OUTPUTS_TAG}
+ git push -f origin v${STEPS_VERSION_OUTPUTS_MAJOR}
36
+ env:
37
+ STEPS_VERSION_OUTPUTS_MAJOR: ${{ steps.version.outputs.major }}
38
+ STEPS_VERSION_OUTPUTS_TAG: ${{ steps.version.outputs.tag }}
0 commit comments