File tree 2 files changed +3
-3
lines changed
actions/download-verify-element-tarball
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11
11
using : composite
12
12
steps :
13
13
- name : Download release tarball
14
- id : current_download
15
14
uses : robinraju/release-downloader@a96f54c1b5f5e09e47d9504526e96febd949d4c2 # v1
16
15
with :
17
16
tag : ${{ inputs.tag }}
Original file line number Diff line number Diff line change 41
41
- name : Check current version on deployment
42
42
id : current_version
43
43
run : |
44
- echo "version=v$(curl -s https://$SITE/version)" >> $GITHUB_OUTPUT
44
+ version=$(curl -s https://$SITE/version)
45
+ echo "version=${version#v}" >> $GITHUB_OUTPUT
45
46
46
47
# The current version bundle melding dance is skipped if the version we're deploying is the same
47
48
# as then we're just doing a re-deploy of the same version with potentially different configs.
50
51
if : steps.current_version.outputs.version != github.ref_name
51
52
uses : ./.github/actions/download-verify-element-tarball
52
53
with :
53
- tag : ${{ steps.current_version.outputs.version }}
54
+ tag : v ${{ steps.current_version.outputs.version }}
54
55
out-file-path : _current_version
55
56
56
57
- name : Download target version
You can’t perform that action at this time.
0 commit comments