diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ab71d929..7553911f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -56,8 +56,10 @@ jobs: run: yarn nx docker-build ${{ inputs.application }} - name: Save Docker image to a tar file + env: + APPLICATION: ${{ inputs.application }} run: | - docker save ${{ inputs.application }}:latest -o /tmp/${{ inputs.application }}.tar + docker save $APPLICATION:latest -o /tmp/$APPLICATION.tar - name: Upload Docker image as artifact uses: actions/upload-artifact@v4