Skip to content

Commit 3800d83

Browse files
authored
Fix cicd release version to read directly from github context (#466)
## Summary Fix cicd release version to read directly from github context. ## How was it tested? I'm pretty confident this will work, but it is hard to test. Will wait till the next release cycle.
1 parent 45c670b commit 3800d83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/cli-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,5 +102,5 @@ jobs:
102102
- name: Update latest version in s3
103103
run: |
104104
tmp_file=$(mktemp)
105-
echo "${{ env.release_tag }}" > $tmp_file
105+
echo "${{ github.ref_name }}" > $tmp_file
106106
aws s3 cp $tmp_file s3://releases.jetpack.io/devbox/latest/version

0 commit comments

Comments
 (0)