Skip to content

Commit a0bfa77

Browse files
committed
fix: linting of major version updater file
Signed-off-by: jmeridth <[email protected]>
1 parent 6962927 commit a0bfa77

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/major-version-updater.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,8 @@ jobs:
3131
{ echo "tag=${tag}"; echo "version=${version}"; echo "major=${major}"; } >> "$GITHUB_OUTPUT"
3232
- name: force update major tag
3333
run: |
34-
git tag -f v${{ steps.version.outputs.major }} ${{ steps.version.outputs.tag }}
35-
git push -f origin v${{ steps.version.outputs.major }}
34+
git tag -f v${STEPS_VERSION_OUTPUTS_MAJOR} ${STEPS_VERSION_OUTPUTS_TAG}
35+
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

Comments
 (0)