Skip to content

Commit

Permalink
update build_args format
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaffen committed Oct 17, 2023
1 parent ade094a commit 2e47469
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
uses: voxpupuli/gha-build-and-publish-a-container@v2
with:
registry_password: ${{ secrets.GITHUB_TOKEN }}
build_args: 'PUPPET_RELEASE=7,PUPPET_VERSION=${{ github.ref_name }}'
build_args: |
PUPPET_RELEASE=7
PUPPET_VERSION=${{ github.ref_name }}
build_arch: linux/amd64,linux/arm64
build_context: puppetdb
buildfile: puppetdb/Dockerfile
Expand All @@ -31,7 +33,9 @@ jobs:
uses: voxpupuli/gha-build-and-publish-a-container@v2
with:
registry_password: ${{ secrets.GITHUB_TOKEN }}
build_args: 'PUPPET_RELEASE=8,PUPPET_VERSION=${{ github.ref_name }}'
build_args: |
PUPPET_RELEASE=8
PUPPET_VERSION=${{ github.ref_name }}
build_arch: linux/amd64,linux/arm64
build_context: puppetdb
buildfile: puppetdb/Dockerfile
Expand Down

0 comments on commit 2e47469

Please sign in to comment.