Skip to content

Commit

Permalink
chore: fix build args
Browse files Browse the repository at this point in the history
  • Loading branch information
JashBook committed Dec 21, 2023
1 parent 18fb37e commit d84a382
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release-image-cache-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ jobs:
file: ${{ inputs.DOCKERFILE_PATH }}
tags: ${{ env.DOCKER_REGISTRY_URL }}/${{ inputs.IMG }}:${{ steps.get_tag_name.outputs.TAG-NAME }}
platforms: ${{ inputs.BUILDX_PLATFORMS }}
build-args: "GITHUB_TOKEN=${{ env.GITHUB_TOKEN }} ${{ inputs.BUILDX_ARGS }}"
build-args: `"GITHUB_TOKEN=${{ env.GITHUB_TOKEN }}"
${{ inputs.BUILDX_ARGS }}`
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
Expand All @@ -191,7 +192,7 @@ jobs:
file: ${{ inputs.DOCKERFILE_PATH }}
tags: ${{ env.DOCKER_REGISTRY_URL }}/${{ inputs.IMG }}:${{ steps.get_tag_name.outputs.TAG-NAME }}
platforms: ${{ inputs.BUILDX_PLATFORMS }}
build-args: ${{ inputs.BUILDX_ARGS }}
build-args: `${{ inputs.BUILDX_ARGS }}`
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down

0 comments on commit d84a382

Please sign in to comment.