Skip to content

Commit

Permalink
Use comma separator for build-args
Browse files Browse the repository at this point in the history
  • Loading branch information
pflooky committed Aug 16, 2024
1 parent 754f91d commit 6fcbc8a
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,12 @@ jobs:
platforms: linux/amd64,linux/arm64
push: true
tags: datacatering/fluentd-elasticsearch:${{ env.VERSION }}
build-args:
- "FLUENTD_VERSION=${{ env.VERSION }}"
- "PLUGIN_ELASTICSEARCH_VERSION=${{ env.PLUGIN_ELASTICSEARCH_VERSION }}"
build-args: "FLUENTD_VERSION=${{ env.VERSION }},PLUGIN_ELASTICSEARCH_VERSION=${{ env.PLUGIN_ELASTICSEARCH_VERSION }}"
- name: Build and push - gcs
uses: docker/build-push-action@v6
with:
dockerfile: "./Dockerfile.gcs"
platforms: linux/amd64,linux/arm64
push: true
tags: datacatering/fluentd-gcs:${{ env.VERSION }}
build-args:
- "FLUENTD_VERSION=${{ env.VERSION }}"
- "PLUGIN_GCS_VERSION=${{ env.PLUGIN_GCS_VERSION }}"
build-args: "FLUENTD_VERSION=${{ env.VERSION }},PLUGIN_GCS_VERSION=${{ env.PLUGIN_GCS_VERSION }}"

0 comments on commit 6fcbc8a

Please sign in to comment.