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 64fc7ad commit 2f6457aCopy full SHA for 2f6457a
.github/workflows/ci.yml
@@ -176,12 +176,12 @@ jobs:
176
run: docker save "${IMAGE}:${TAG}" -o "${IMAGE}-${TAG}.tar"
177
env:
178
IMAGE: ${{ matrix.image }}
179
- TAG: ${{ github.ref.name }}
+ TAG: ${{ env.GITHUB_REF_NAME }}
180
181
- uses: actions/upload-artifact@v2
182
with:
183
name: ${{ matrix.image }}-image-tarball
184
- path: ${{ matrix.image }}-${{ github.ref.name }}.tar
+ path: ${{ matrix.image }}-${{ env.GITHUB_REF_NAME }}.tar
185
186
- uses: ./.github/actions/cargo-install-upload-artifacts
187
if: matrix.deploy
0 commit comments