Skip to content

Commit

Permalink
Github Action workflow YAML fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mkarlesky committed Oct 2, 2024
1 parent 83efb55 commit bb6902f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
file: {context}/build/standard/docker/Dockerfile
file: build/standard/docker/Dockerfile
build-args: CONTAINER_VERSION=${{ github.ref_name }}
push: ${{ github.event_name != 'pull_request' }}
tags: throwtheswitch/madsciencelab:${{ github.ref_name }}, throwtheswitch/madsciencelab:latest
Expand All @@ -53,7 +53,7 @@ jobs:
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
file: {context}/build/plugins/docker/Dockerfile
file: build/plugins/docker/Dockerfile
build-args: CONTAINER_VERSION=${{ github.ref_name }}
push: ${{ github.event_name != 'pull_request' }}
tags: throwtheswitch/madsciencelab-plugins:${{ github.ref_name }}, throwtheswitch/madsciencelab-plugins:latest
Expand All @@ -63,7 +63,7 @@ jobs:
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
file: {context}/build/arm-none-eabi/docker/Dockerfile
file: build/arm-none-eabi/docker/Dockerfile
build-args: CONTAINER_VERSION=${{ github.ref_name }}
push: ${{ github.event_name != 'pull_request' }}
tags: throwtheswitch/madsciencelab-arm-none-eabi:${{ github.ref_name }}, throwtheswitch/madsciencelab-arm-none-eabi:latest
Expand All @@ -73,7 +73,7 @@ jobs:
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
file: {context}/build/arm-none-eabi-plugins/docker/Dockerfile
file: build/arm-none-eabi-plugins/docker/Dockerfile
build-args: CONTAINER_VERSION=${{ github.ref_name }}
push: ${{ github.event_name != 'pull_request' }}
tags: throwtheswitch/madsciencelab-arm-none-eabi-plugins:${{ github.ref_name }}, throwtheswitch/madsciencelab-arm-none-eabi-plugins:latest
Expand Down

0 comments on commit bb6902f

Please sign in to comment.