We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cab75b0 commit b96d646Copy full SHA for b96d646
.github/workflows/ci.yml
@@ -165,12 +165,12 @@ jobs:
165
run: docker save "${IMAGE}:${TAG}" -o "${IMAGE}-${TAG}.tar"
166
env:
167
IMAGE: ${{ matrix.image }}
168
- TAG: ${{ github.ref.name }}
+ TAG: ${{ env.GITHUB_REF_NAME }}
169
170
- uses: actions/upload-artifact@v2
171
with:
172
name: ${{ matrix.image }}-image-tarball
173
- path: ${{ matrix.image }}-${{ github.ref.name }}.tar
+ path: ${{ matrix.image }}-${{ env.GITHUB_REF_NAME }}.tar
174
175
- uses: ./.github/actions/cargo-install-upload-artifacts
176
if: matrix.deploy
0 commit comments