diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 758ed5c..9611f3d 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -19,8 +19,15 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - - name: Build - run: docker buildx build -t gitea.dropgaze.xyz/jake/sproute-db-migrations:latest --platform linux/amd64,linux/arm64 . - - - name: Push - run: docker push -t gitea.dropgaze.xyz/jake/sproute-db-migrations:latest + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - + name: Build and push + uses: docker/build-push-action@v6 + with: + context: . + push: true + tags: jake/sproute-db-migrations:latest