Skip to content

Commit

Permalink
Use newline delimiter for build-args
Browse files Browse the repository at this point in the history
  • Loading branch information
pflooky committed Aug 16, 2024
1 parent 5b92e97 commit 6eb8e09
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,16 @@ 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:
file: "./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 6eb8e09

Please sign in to comment.