Skip to content

Commit 41028ca

Browse files
authored
Add fail_fast input to build-docker-artifacts
1 parent 2662c69 commit 41028ca

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build-docker-artifacts.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ on:
1818
required: false
1919
# When using github.ref || github.head_ref, it would contain the full path, including /, which breaks the postgres hostname
2020
default: ${{ github.sha }}
21+
fail_fast:
22+
type: boolean
23+
required: false
24+
default: true
2125
runs_on:
2226
type: string
2327
required: false
@@ -134,7 +138,7 @@ jobs:
134138
name: Build ${{ matrix.component.directory }} of ${{ matrix.component.flavor.directory }} (${{ matrix.component.ecr_repository }}:${{ matrix.component.image_tag }})
135139
needs: get-flavors
136140
strategy:
137-
fail-fast: true
141+
fail-fast: ${{ inputs.fail_fast }}
138142
matrix:
139143
component: ${{ fromJson(needs.get-flavors.outputs.result).components }}
140144
runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }}

0 commit comments

Comments
 (0)