Skip to content

Commit

Permalink
fixup! fix output
Browse files Browse the repository at this point in the history
  • Loading branch information
o-orand committed Jan 17, 2024
1 parent 88235f0 commit 4ac2a55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/on-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
next_patch=$((patch + 1))
nextVersion=${major_minor}.$next_patch
echo "nextVersion: $nextVersion"
echo "NEXT_VERSION=$nextVersion" >> "$GITHUB_ENV"
echo "nextVersion=$nextVersion" >> "$GITHUB_OUTPUT"
cd ..
- name: Test final release creation new tag
id: test_final_new_release
Expand All @@ -87,12 +87,12 @@ jobs:
token: ${{ secrets.CREATE_BOSH_RELEASE_ACTION_TEST_BOSHRELEASE_GIT_TOKEN }}
target_branch: main
dir: final-release-creation-test
tag_name: "${{ steps.semver-final-release.env.NEXT_VERSION }}"
tag_name: "${{ steps.semver-final-release.outputs.nextVersion }}"
override_existing: "false"
debug: 1
- name: Generated final files status - new
env:
NEXT_VERSION: "${{ steps.semver-final-release.env.NEXT_VERSION }}"
NEXT_VERSION: "${{ steps.semver-final-release.outputs.nextVersion }}"
run: |
ls -lrt
cd final-release-creation-test
Expand Down

0 comments on commit 4ac2a55

Please sign in to comment.