File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ jobs:
175175 run : |
176176 export EC_VERSION="${{ needs.get-tag.outputs.tag-name }}"
177177 export OPERATOR_IMAGE=proxy.replicated.com/anonymous/${{ needs.publish-operator-image.outputs.image }}
178- export OPERATOR_VERSION=${{ needs.get-tag.outputs.tag-name }}
178+ export OPERATOR_VERSION=$(echo "$ {{ needs.get-tag.outputs.tag-name }}" | sed 's/^v//')
179179
180180 ./scripts/cache-files.sh
181181
@@ -188,7 +188,7 @@ jobs:
188188 run : |
189189 export EC_VERSION="${{ needs.get-tag.outputs.tag-name }}"
190190 export OPERATOR_IMAGE=proxy.replicated.com/anonymous/${{ needs.publish-operator-image.outputs.image }}
191- export OPERATOR_VERSION=${{ needs.get-tag.outputs.tag-name }}
191+ export OPERATOR_VERSION=$(echo "$ {{ needs.get-tag.outputs.tag-name }}" | sed 's/^v//')
192192
193193 ./scripts/cache-files.sh
194194
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ main() {
1111 apt-get install curl ca-certificates -y
1212
1313 echo " downloading from https://staging.replicated.app/embedded/embedded-cluster-smoke-test-staging-app/ci/${app_version_label} "
14- curl " https://staging.replicated.app/embedded/embedded-cluster-smoke-test-staging-app/ci/${app_version_label} " -H " Authorization: ${license_id} " -o ec-release.tgz
14+ curl -fL -o ec-release.tgz " https://staging.replicated.app/embedded/embedded-cluster-smoke-test-staging-app/ci/${app_version_label} " -H " Authorization: ${license_id} "
1515 tar xzf ec-release.tgz
1616
1717 mkdir -p /assets
You can’t perform that action at this time.
0 commit comments