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 4ee5d53 commit 3342f64Copy full SHA for 3342f64
.github/workflows/ci.yml
@@ -160,6 +160,19 @@ jobs:
160
LATEST: ${{ needs.check.outputs.is-latest || 'false' }}
161
shell: bash
162
163
+ - name: Save Docker Image
164
+ id: save-docker-image
165
+ uses: docker/metadata-action@v4
166
+ run: docker save "${IMAGE}:${TAG}" -o "${IMAGE}-${TAG}.tar"
167
+ env:
168
+ IMAGE: ${{ matrix.image }}
169
+ TAG: ${{ github.ref.name }}
170
+
171
+ - uses: actions/upload-artifact@v2
172
+ with:
173
+ name: ${{ matrix.image }}-image-tarball
174
+ path: ${{ matrix.image }}-${{ github.ref.name }}.tar
175
176
- uses: ./.github/actions/cargo-install-upload-artifacts
177
if: matrix.deploy
178
with:
0 commit comments