Skip to content

Github Action workflow YAML fix #2

Github Action workflow YAML fix

Github Action workflow YAML fix #2

Workflow file for this run

name: Docker image build
on:
workflow_dispatch:
push:
branches:
- 'secure-and-more-better'
# - 'main'
tags:
- '*'
pull_request:
branches:
- 'main'
jobs:
build-and-push-images:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
attestations: write
id-token: write
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@v4
- name: 'Set up QEMU'
uses: docker/setup-qemu-action@v3
- name: 'Set up Docker Buildx'
uses: docker/setup-buildx-action@v3
- name: 'Login to Docker Hub'
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: 'Build and push Docker image throwtheswitch/madsciencelab:${{ github.ref_name }}'
id: push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
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
- name: 'Build and push Docker image throwtheswitch/madsciencelab-plugins:${{ github.ref_name }}'
id: push

Check failure on line 52 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Docker image build

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 52, Col: 13): The identifier 'push' may not be used more than once within the same scope. .github/workflows/main.yml (Line: 62, Col: 13): The identifier 'push' may not be used more than once within the same scope.
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
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
- name: 'Build and push Docker image throwtheswitch/madsciencelab-arm-none-eabi:${{ github.ref_name }}'
id: push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
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
- name: 'Build and push Docker image throwtheswitch/madsciencelab-arm-none-eabi-plugins:${{ github.ref_name }}'
id: push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
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