Skip to content

Commit

Permalink
build: fix docker images not being pushed (#1234)
Browse files Browse the repository at this point in the history
  • Loading branch information
chillleader authored Oct 6, 2023
1 parent 465fe8a commit 56abc55
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/RELEASE.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 56abc55

Please sign in to comment.