Github Actions: quoting troubles
This commit is contained in:
8
.github/workflows/master-latest.yaml
vendored
8
.github/workflows/master-latest.yaml
vendored
@@ -46,7 +46,7 @@ jobs:
|
||||
- name: Build and push amd64 Release Docker Image to DockerHub
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
build-args: DEBUG_BUILD=0,BASE_IMAGE_SUFFIX=""
|
||||
build-args: DEBUG_BUILD=0,BASE_IMAGE_SUFFIX=
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
@@ -59,7 +59,7 @@ jobs:
|
||||
- name: Build and push amd64 Debug Docker Image to DockerHub
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
build-args: DEBUG_BUILD=1,BASE_IMAGE_SUFFIX="-debug"
|
||||
build-args: DEBUG_BUILD=1,BASE_IMAGE_SUFFIX=-debug
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
@@ -74,7 +74,7 @@ jobs:
|
||||
- name: Build and push multiarch Release Docker Image to DockerHub
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
build-args: DEBUG_BUILD=0,BASE_IMAGE_SUFFIX=""
|
||||
build-args: DEBUG_BUILD=0,BASE_IMAGE_SUFFIX=
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
@@ -87,7 +87,7 @@ jobs:
|
||||
- name: Build and push multiarch Debug Docker Image to DockerHub
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
build-args: DEBUG_BUILD=1,BASE_IMAGE_SUFFIX="-debug"
|
||||
build-args: DEBUG_BUILD=1,BASE_IMAGE_SUFFIX=-debug
|
||||
builder: ${{ steps.buildx.outputs.name }}
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
|
||||
Reference in New Issue
Block a user