Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Commit

Permalink
Actions docker build: change build-args to a newline delimited string (
Browse files Browse the repository at this point in the history
  • Loading branch information
bretthoerner authored Feb 7, 2024
1 parent 49fa92b commit a42a056
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/docker-capture.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ jobs:
platforms: linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: RUST_BACKTRACE=1 BIN=capture-server
build-args: |
"RUST_BACKTRACE=1"
"BIN=capture-server"
- name: Capture image digest
run: echo ${{ steps.docker_build_capture.outputs.digest }}
4 changes: 3 additions & 1 deletion .github/workflows/docker-hook-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ jobs:
platforms: linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: RUST_BACKTRACE=1 BIN=hook-api
build-args: |
"RUST_BACKTRACE=1"
"BIN=hook-api"
- name: Hook-api image digest
run: echo ${{ steps.docker_build_hook_api.outputs.digest }}
4 changes: 3 additions & 1 deletion .github/workflows/docker-hook-janitor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ jobs:
platforms: linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: RUST_BACKTRACE=1 BIN=hook-janitor
build-args: |
"RUST_BACKTRACE=1"
"BIN=hook-janitor"
- name: Hook-janitor image digest
run: echo ${{ steps.docker_build_hook_janitor.outputs.digest }}
4 changes: 3 additions & 1 deletion .github/workflows/docker-hook-worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ jobs:
platforms: linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: RUST_BACKTRACE=1 BIN=hook-worker
build-args: |
"RUST_BACKTRACE=1"
"BIN=hook-worker"
- name: Hook-worker image digest
run: echo ${{ steps.docker_build_hook_worker.outputs.digest }}

0 comments on commit a42a056

Please sign in to comment.