From 456db54cf4b8d2f9bdd9a2c16296b1bd39e8ab67 Mon Sep 17 00:00:00 2001 From: John Parent Date: Mon, 12 Feb 2024 12:55:30 -0500 Subject: [PATCH] update paths --- .github/workflows/build-file.yml | 4 ++-- .github/workflows/build-gpg.yml | 4 ++-- .github/workflows/build-mingw.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-file.yml b/.github/workflows/build-file.yml index 0474711..75270bd 100644 --- a/.github/workflows/build-file.yml +++ b/.github/workflows/build-file.yml @@ -15,10 +15,10 @@ jobs: uses: actions/download-artifact@v3 with: name: mingw-w64-image - path: tmp + path: tmp/images - name: Load image from artifact run: | - docker load --input tmp/mingw-w64-image.tar + docker load --input tmp/images/mingw-w64-image.tar - name: Build and export to Docker uses: docker/build-push-action@v5 with: diff --git a/.github/workflows/build-gpg.yml b/.github/workflows/build-gpg.yml index f48e28b..fbf1d48 100644 --- a/.github/workflows/build-gpg.yml +++ b/.github/workflows/build-gpg.yml @@ -15,10 +15,10 @@ jobs: uses: actions/download-artifact@v3 with: name: mingw-w64-image - path: tmp + path: tmp/images - name: Load image from artifact run: | - docker load --input tmp/mingw-w64-image.tar + docker load --input tmp/images/mingw-w64-image.tar - name: Build and export to Docker uses: docker/build-push-action@v5 with: diff --git a/.github/workflows/build-mingw.yml b/.github/workflows/build-mingw.yml index 3ccdea0..4795259 100644 --- a/.github/workflows/build-mingw.yml +++ b/.github/workflows/build-mingw.yml @@ -20,9 +20,9 @@ jobs: context: . file: Dockerfiles/mingw-w64/Dockerfile.mingw-w64 tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}/windows-resource/${{ env.IMAGE_NAME }}:latest - outputs: type=docker,dest=/tmp/images + outputs: type=docker,dest=tmp/images - name: Upload Docker image to GH artifacts uses: actions/upload-artifact@v3 with: name: mingw-w64-image - path: tmp + path: tmp/images