name: Build and Publish Docker Image on: [workflow_dispatch] jobs: build-amd64: runs-on: amd64 steps: - name: Checkout code uses: actions/checkout@v4 - name: Build AMD64 run: | docker build -t git.ztsw.de/pedan/freemoto/freemoto-web:amd64 . docker push git.ztsw.de/pedan/freemoto/freemoto-web:amd64 build-arm64: runs-on: arm64 steps: - name: Checkout code uses: actions/checkout@v4 - name: Build ARM64 run: | docker build -t git.ztsw.de/pedan/freemoto/freemoto-web:arm64 . docker push git.ztsw.de/pedan/freemoto/freemoto-web:arm64