Skip to content

Commit

Permalink
fix architectures env sequence
Browse files Browse the repository at this point in the history
Signed-off-by: adwait-godbole <[email protected]>
  • Loading branch information
adwait-godbole committed Nov 18, 2024
1 parent bc968c5 commit f467196
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/delivery-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
REGISTRY_NAME: 'docker.io'
USER_NAME: 'buildpacksio'
IMG_NAME: 'pack'
ARCHITECTURES: ["arm64", "amd64", "s390x", "ppc64le"]
ARCHITECTURES: arm64,amd64,s390x,ppc64le

jobs:
deliver-docker:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Setup Docker Build Environment
run: |
echo "IMG_NAME=${{ env.REGISTRY_NAME }}/${{ env.USER_NAME }}/${{ env.IMG_NAME }}" >> $GITHUB_ENV
echo "${{ env.ARCHITECTURES }}" | jq -r '.[]' > architectures.txt
echo "${{ env.ARCHITECTURES }}" | tr ',' '\n' > architectures.txt
- name: Login to Dockerhub
uses: docker/login-action@v3
with:
Expand Down

0 comments on commit f467196

Please sign in to comment.