Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jmesterh committed Dec 11, 2024
1 parent 5ad6abb commit 00937e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-deploy-release-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build AMD64 image
id: build
id: build-amd64
uses: docker/build-push-action@v6
with:
context: .
Expand All @@ -52,14 +52,14 @@ jobs:
tags: ${{ env.container }}

- name: Test AMD64 image
id: test
id: test-amd64
run: |
docker run --platform linux/amd64 --rm -v "${PWD}/test":/tmp ${{ env.container }} my_address_file.csv
docker run --platform linux/amd64 --rm -v "${PWD}/test":/tmp ${{ env.container }} my_address_file.csv 0.6
docker run --platform linux/amd64 --rm -v "${PWD}/test":/tmp ${{ env.container }} my_address_file.csv all
- name: Build ARM64 image
id: build
id: build-arm64
uses: docker/build-push-action@v6
with:
context: .
Expand All @@ -70,7 +70,7 @@ jobs:
tags: ${{ env.container }}

- name: Test ARM64 image
id: test
id: test-arm64
run: |
docker run --platform linux/arm64 --rm -v "${PWD}/test":/tmp ${{ env.container }} my_address_file.csv
docker run --platform linux/arm64 --rm -v "${PWD}/test":/tmp ${{ env.container }} my_address_file.csv 0.6
Expand Down

0 comments on commit 00937e6

Please sign in to comment.