diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml index 7392290af..81320e363 100644 --- a/.github/workflows/docker-release.yml +++ b/.github/workflows/docker-release.yml @@ -114,7 +114,7 @@ jobs: with: if-no-files-found: error name: digest-${{ matrix.label }} - path: $RUNNER_TEMP/digests/* + path: ${{ runner.temp }}/digests/* retention-days: 1 @@ -129,7 +129,7 @@ jobs: - name: "Download digests" uses: actions/download-artifact@v7 with: - path: $RUNNER_TEMP/digests + path: ${{ runner.temp }}/digests pattern: digest-* merge-multiple: true @@ -167,7 +167,7 @@ jobs: --annotation "index:org.opencontainers.image.title=$OCI_TITLE" \ --annotation "index:org.opencontainers.image.url=$OCI_URL" \ $TAG_ARGS \ - $(printf '%s@sha256:%s ' "$GHCR_IMAGE" *) + $(printf "$GHCR_IMAGE@sha256:%s " *) - name: "Inspect images" run: |