We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 771e7f7 commit cd4b543Copy full SHA for cd4b543
.github/workflows/docker-ci.yml
@@ -11,6 +11,11 @@ permissions:
11
jobs:
12
build:
13
name: Build and Push Images
14
+ # Skip for release PRs to avoid double building with release workflow.
15
+ if: |
16
+ github.event_name == 'workflow_dispatch' || (
17
+ github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'release')
18
+ )
19
strategy:
20
matrix:
21
image: [etl-api, etl-replicator]
.github/workflows/release.yml
@@ -128,7 +128,7 @@ jobs:
128
USER="${{ vars.DOCKERHUB_USERNAME }}"
129
TAG="${{ needs.version.outputs.tag }}"
130
{
131
- echo "body<<'MARKER'"
+ echo "body<<MARKER"
132
echo "Release ${TAG}"
133
echo
134
echo "Docker images published:"
0 commit comments