Skip to content

Commit

Permalink
update paths
Browse files Browse the repository at this point in the history
  • Loading branch information
johnwparent committed Feb 12, 2024
1 parent 773118a commit 456db54
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-gpg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 456db54

Please sign in to comment.