From 3fdf485a1640fbb8f9780049eda0b78f1334ad2b Mon Sep 17 00:00:00 2001 From: John Skinner Date: Fri, 2 Aug 2024 17:55:34 -0500 Subject: [PATCH] fix context for gh action --- .github/workflows/publish_image.yaml | 2 +- .github/workflows/publish_proton_image.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_image.yaml b/.github/workflows/publish_image.yaml index 36c8a09..f703321 100644 --- a/.github/workflows/publish_image.yaml +++ b/.github/workflows/publish_image.yaml @@ -16,7 +16,7 @@ jobs: - name: Build and push uses: docker/build-push-action@v6 with: - context: ./container/wine + context: "{{defaultContext}}:/container/wine" file: Dockerfile push: true tags: | diff --git a/.github/workflows/publish_proton_image.yaml b/.github/workflows/publish_proton_image.yaml index 0f0c121..0d5113a 100644 --- a/.github/workflows/publish_proton_image.yaml +++ b/.github/workflows/publish_proton_image.yaml @@ -16,7 +16,7 @@ jobs: - name: Build and push uses: docker/build-push-action@v6 with: - context: ./container/proton + context: "{{defaultContext}}:/container/proton" file: Dockerfile push: true tags: |