diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 6f6450f..758ed5c 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -19,13 +19,8 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - - name: Build and push Main web app container image to registry - uses: docker/build-push-action@v4 - with: - context: . - push: true - tags: jake/sproute-db-migrations:latest - platforms: | - linux/amd64 - linux/arm64 - file: ./Dockerfile + - 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