From 415eea6fabca161706ff23a00f29386f5e13baeb Mon Sep 17 00:00:00 2001 From: Stavros Date: Thu, 15 May 2025 17:08:56 +0300 Subject: [PATCH] fix: use current context in release workflows --- .github/workflows/nightly.yml | 2 ++ .github/workflows/release.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index b0f8d51..352f70d 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -147,6 +147,7 @@ jobs: uses: docker/build-push-action@v6 id: build with: + context: . platforms: linux/amd64 labels: ${{ steps.meta.outputs.labels }} tags: ghcr.io/${{ github.repository_owner }}/tinyauth @@ -199,6 +200,7 @@ jobs: uses: docker/build-push-action@v6 id: build with: + context: . platforms: linux/arm64 labels: ${{ steps.meta.outputs.labels }} tags: ghcr.io/${{ github.repository_owner }}/tinyauth diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index be51c73..6302ee2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -122,6 +122,7 @@ jobs: uses: docker/build-push-action@v6 id: build with: + context: . platforms: linux/amd64 labels: ${{ steps.meta.outputs.labels }} tags: ghcr.io/${{ github.repository_owner }}/tinyauth @@ -171,6 +172,7 @@ jobs: uses: docker/build-push-action@v6 id: build with: + context: . platforms: linux/arm64 labels: ${{ steps.meta.outputs.labels }} tags: ghcr.io/${{ github.repository_owner }}/tinyauth