Skip to content

Commit c216cc6

Browse files
authored
Disable self-hosted run of fast docker artifacts jobs
1 parent e615a57 commit c216cc6

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

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

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ jobs:
4949
name: Get flavors from config.json
5050
outputs:
5151
result: ${{ steps.get-flavors.outputs.result }}
52-
runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }}
52+
# Do not run this on self-hosted, as it is faster and shouldn't be blocking anything
53+
# runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }}
54+
runs-on: 'ubuntu-22.04'
5355
steps:
5456
- name: Checkout repository
5557
uses: actions/checkout@v4
@@ -258,7 +260,9 @@ jobs:
258260
fail-fast: false
259261
matrix:
260262
flavor: ${{ fromJson(needs.get-flavors.outputs.result).flavors }}
261-
runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }}
263+
# Do not run this on self-hosted, as it is faster and shouldn't be blocking anything
264+
# runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }}
265+
runs-on: 'ubuntu-22.04'
262266
steps:
263267
- name: Checkout repository
264268
uses: actions/checkout@v4
@@ -318,4 +322,5 @@ jobs:
318322
with:
319323
push_to: ${{ fromJson(needs.get-flavors.outputs.result).push_to }}
320324
branch: ${{ inputs.branch }}
321-
runs_on: ${{ inputs.runs_on || 'ubuntu-22.04' }}
325+
# Do not run this on self-hosted, as it is faster and shouldn't be blocking anything
326+
# runs_on: ${{ inputs.runs_on || 'ubuntu-22.04' }}

0 commit comments

Comments
 (0)