Skip to content

Commit 712e263

Browse files
phlogistonjohnmergify[bot]
authored andcommitted
workflows: use container command env var
Avoid hardcoding docker when we have a CONTAINER_CMD variable already for choosing what container engine to use. Signed-off-by: John Mulligan <[email protected]>
1 parent 1c5c27a commit 712e263

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/container-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ jobs:
226226
steps:
227227
- uses: actions/checkout@v3
228228
- name: log in to quay.io
229-
run: docker login -u "${{ secrets.QUAY_USER }}" -p "${{ secrets.QUAY_PASS }}" quay.io
229+
run: ${CONTAINER_CMD} login -u "${{ secrets.QUAY_USER }}" -p "${{ secrets.QUAY_PASS }}" quay.io
230230
- name: push server image
231231
run: make push-server
232232
- name: push ad-server image

0 commit comments

Comments
 (0)