diff --git a/.github/workflows/build-container.yml b/.github/workflows/build-container.yml index 262abd48..f7a076e1 100644 --- a/.github/workflows/build-container.yml +++ b/.github/workflows/build-container.yml @@ -58,3 +58,13 @@ jobs: push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} + + - name: Build and push Docker Image + uses: docker/build-push-action@v5 + if: github.ref == 'refs/heads/main' + with: + platforms: linux/amd64,linux/arm64 + context: . + push: true + tags: '${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:dev' + labels: ${{ steps.meta.outputs.labels }}