diff --git a/.github/workflows/RELEASE.yaml b/.github/workflows/RELEASE.yaml index 011042f1e4..8f8fa132f8 100644 --- a/.github/workflows/RELEASE.yaml +++ b/.github/workflows/RELEASE.yaml @@ -145,7 +145,7 @@ jobs: uses: docker/build-push-action@v5 with: context: connector-runtime/connector-runtime-application/ - push: ${{ github.ref == 'refs/heads/main' }} + push: true tags: camunda/connectors:${{ github.event.release.tag_name }} platforms: linux/amd64,linux/arm64 provenance: false @@ -154,7 +154,7 @@ jobs: uses: docker/build-push-action@v5 with: context: bundle/default-bundle/ - push: ${{ github.ref == 'refs/heads/main' }} + push: true tags: camunda/connectors-bundle:${{ github.event.release.tag_name }} platforms: linux/amd64,linux/arm64 provenance: false @@ -163,7 +163,7 @@ jobs: uses: docker/build-push-action@v5 with: context: bundle/camunda-saas-bundle/ - push: ${{ github.ref == 'refs/heads/main' }} + push: true tags: camunda/connectors-bundle-saas:${{ github.event.release.tag_name }} platforms: linux/amd64,linux/arm64 provenance: false @@ -174,7 +174,7 @@ jobs: uses: docker/build-push-action@v5 with: context: connector-runtime/connector-runtime-application/ - push: ${{ github.ref == 'refs/heads/main' }} + push: true tags: camunda/connectors:latest platforms: linux/amd64,linux/arm64 provenance: false @@ -184,7 +184,7 @@ jobs: uses: docker/build-push-action@v5 with: context: bundle/default-bundle/ - push: ${{ github.ref == 'refs/heads/main' }} + push: true tags: camunda/connectors-bundle:latest platforms: linux/amd64,linux/arm64 provenance: false @@ -194,7 +194,7 @@ jobs: uses: docker/build-push-action@v5 with: context: bundle/camunda-saas-bundle/ - push: ${{ github.ref == 'refs/heads/main' }} + push: true tags: camunda/connectors-bundle-saas:latest platforms: linux/amd64,linux/arm64 provenance: false