diff options
author | 2020-11-17 17:46:26 +0100 | |
---|---|---|
committer | 2020-11-17 17:46:26 +0100 | |
commit | 7c3ad2f9bc98450234860655632cdfabc1637c2a (patch) | |
tree | 3364440793f460cd351ccaf4003610fde524100d | |
parent | Try build args in a different format (diff) |
Delete quotes messing with build args
-rw-r--r-- | .github/workflows/lint-test.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 2c87405..cf894ad 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -117,7 +117,7 @@ jobs: context: . file: ./docker/Dockerfile build-args: | - IMAGE_TAG="${{ steps.sha_tag.outputs.tag }}" + IMAGE_TAG=${{ steps.sha_tag.outputs.tag }} push: true cache-from: | type=local,src=/tmp/.base-buildx-cache |