Skip to content

Commit

Permalink
fix setting docker image build args
Browse files Browse the repository at this point in the history
Signed-off-by: xeptore <[email protected]>
  • Loading branch information
xeptore committed Mar 22, 2023
1 parent acd81a2 commit c882aa2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit c882aa2

Please sign in to comment.