File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 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' }}
You can’t perform that action at this time.
0 commit comments