mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-12 12:00:03 -05:00
Fix build args
Signed-off-by: Brett Logan <lindluni@github.com>
This commit is contained in:
parent
489b843118
commit
5cec0b4239
1 changed files with 18 additions and 18 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -31,9 +31,9 @@ jobs:
|
|||
run: echo "BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> "${GITHUB_ENV}"
|
||||
- name: Build Docker images
|
||||
run: |
|
||||
docker build --build-arg "${date}" \
|
||||
--build-arg "${revision}" \
|
||||
--build-arg "${version}" \
|
||||
docker build --build-arg "BUILD_DATE=${date}" \
|
||||
--build-arg "BUILD_DATE=${revision}" \
|
||||
--build-arg "BUILD_VERSION=${version}" \
|
||||
--target "${target}" \
|
||||
--tag "ghcr.io/github/super-linter:${tag}" .
|
||||
env:
|
||||
|
|
Loading…
Reference in a new issue