Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mhwasil committed Apr 23, 2024
1 parent 87a58a1 commit c6ab32f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-build-test-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
tags: ${{ inputs.registry }}/${{ env.OWNER }}/${{ inputs.image }}:${{ inputs.variant }}

- name: Build image 🛠
if: inputs.parent-image != ''
if: ${{ inputs.parent-image != '' || !contains(inputs.image, 'base-gpu-notebook')}}
id: build_image
uses: docker/build-push-action@v5
with:
Expand All @@ -135,7 +135,7 @@ jobs:
if: inputs.parent-image != ''
run: |
mkdir -p /tmp/a2s/images/
docker save ${{ env.REGISTRY }}/${{ env.OWNER }}/${{ inputs.image }}:${{ inputs.variant }} | zstd > /tmp/a2s/images/${{ inputs.image }}--${{ inputs.variant }}.tar.zst
docker save ${{ env.registry }}/${{ env.OWNER }}/${{ inputs.image }}:${{ inputs.variant }} | zstd > /tmp/a2s/images/${{ inputs.image }}--${{ inputs.variant }}.tar.zst
shell: bash

- name: Upload image as artifact 💾
Expand Down

0 comments on commit c6ab32f

Please sign in to comment.