Skip to content

Commit 79897bf

Browse files
committed
fix build arg list
1 parent 918c066 commit 79897bf

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/latest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ jobs:
5151
with:
5252
push: true
5353
file: Dockerfile.omd-labs-${{ matrix.os }}
54-
build-args:
55-
OMD_VERSION: ${{ github.ref }}
56-
INSTALL_COMMON_RETRIES: 3
54+
build-args: |
55+
OMD_VERSION=${{ github.ref }}
56+
INSTALL_COMMON_RETRIES=3
5757
tags: |
5858
consol/omd-labs-${{ matrix.os }}:${{ env.DOCKERTAG }}-${{ matrix.target.platform }}
5959
ghcr.io/consol/omd-labs-docker/omd-labs-${{ matrix.os }}:${{ env.DOCKERTAG }}-${{ matrix.target.platform }}

.github/workflows/nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ jobs:
5151
with:
5252
push: true
5353
file: Dockerfile.omd-labs-${{ matrix.os }}
54-
build-args:
55-
OMD_VERSION: ${{ github.ref }}
56-
INSTALL_COMMON_RETRIES: 3
54+
build-args: |
55+
OMD_VERSION=${{ github.ref }}
56+
INSTALL_COMMON_RETRIES=3
5757
tags: |
5858
consol/omd-labs-${{ matrix.os }}:${{ env.DOCKERTAG }}-${{ matrix.target.platform }}
5959
ghcr.io/consol/omd-labs-docker/omd-labs-${{ matrix.os }}:${{ env.DOCKERTAG }}-${{ matrix.target.platform }}

.github/workflows/releases.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ jobs:
5151
with:
5252
push: true
5353
file: Dockerfile.omd-labs-${{ matrix.os }}
54-
build-args:
55-
OMD_VERSION: ${{ github.ref }}
56-
INSTALL_COMMON_RETRIES: 3
54+
build-args: |
55+
OMD_VERSION=${{ github.ref }}
56+
INSTALL_COMMON_RETRIES=3
5757
tags: |
5858
consol/omd-labs-${{ matrix.os }}:${{ env.DOCKERTAG }}-${{ matrix.target.platform }}
5959
ghcr.io/consol/omd-labs-docker/omd-labs-${{ matrix.os }}:${{ env.DOCKERTAG }}-${{ matrix.target.platform }}

0 commit comments

Comments
 (0)