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 b74a1bd commit bf4ca1cCopy full SHA for bf4ca1c
.github/workflows/ci.yml
@@ -171,6 +171,19 @@ jobs:
171
LATEST: ${{ needs.check.outputs.is-latest || 'false' }}
172
shell: bash
173
174
+ - name: Save Docker Image
175
+ id: save-docker-image
176
+ uses: docker/metadata-action@v4
177
+ run: docker save "${IMAGE}:${TAG}" -o "${IMAGE}-${TAG}.tar"
178
+ env:
179
+ IMAGE: ${{ matrix.image }}
180
+ TAG: ${{ github.ref.name }}
181
+
182
+ - uses: actions/upload-artifact@v2
183
+ with:
184
+ name: ${{ matrix.image }}-image-tarball
185
+ path: ${{ matrix.image }}-${{ github.ref.name }}.tar
186
187
- uses: ./.github/actions/cargo-install-upload-artifacts
188
if: matrix.deploy
189
with:
0 commit comments