Skip to content

Commit a7cde5b

Browse files
committed
ci: fixed assignment to RELEASE_TAG environment variable in task create_and_push
1 parent be7d1c1 commit a7cde5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/create-linked-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
# This step only runs if the tag is valid AND new.
8989
if: steps.check_tag.outputs.create_tag == 'true'
9090
env:
91-
RELEASE_TAG: v${{ steps.validate_tag.outputs.new_version }}
91+
RELEASE_TAG: ${{ steps.validate_tag.outputs.new_version }}
9292
run: |
9393
RELEASE_TAG="v${RELEASE_TAG#v}" # Ensure the tag starts with 'v'
9494

0 commit comments

Comments
 (0)