From c882aa2286ba280fa41c38785ff4a8fad749c6f0 Mon Sep 17 00:00:00 2001 From: xeptore <29199390+xeptore@users.noreply.github.com> Date: Wed, 22 Mar 2023 18:47:03 +0330 Subject: [PATCH] fix setting docker image build args Signed-off-by: xeptore <29199390+xeptore@users.noreply.github.com> --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7709630..2fe23d4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ concurrency: group: ${{ github.workflow }}-${{ github.ref_type }} cancel-in-progress: true jobs: - main: + Build: runs-on: ubuntu-latest permissions: packages: write @@ -85,8 +85,8 @@ jobs: file: Dockerfile no-cache: true build-args: | - GOOS: ${{ env.GOOS }} - GOARCH: ${{ env.GOARCH }} + GOOS=${{ env.GOOS }} + GOARCH=${{ env.GOARCH }} tags: | ghcr.io/${{ github.repository }}/ingest:latest labels: ${{ steps.meta.outputs.labels }}