diff --git a/.github/workflows/release-docker-enterprise.yml b/.github/workflows/release-docker-enterprise.yml index c7b4e6bce1..9cb0258904 100644 --- a/.github/workflows/release-docker-enterprise.yml +++ b/.github/workflows/release-docker-enterprise.yml @@ -62,11 +62,21 @@ jobs: replace: ${{env.STEEDOS_VERSION}} regex: false - - name: Build and push docker + - name: Build and push docker linux/amd64 uses: docker/build-push-action@v3 with: context: ./deploy/enterprise - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64 + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + + + - name: Build and push docker linux/arm64 + uses: docker/build-push-action@v3 + with: + context: ./deploy/enterprise + platforms: linux/arm64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}