mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-04-25 20:12:07 +00:00
Fixing the condition ?
This commit is contained in:
parent
262abb8223
commit
45787f15bb
6
.github/workflows/build.yaml
vendored
6
.github/workflows/build.yaml
vendored
@ -267,7 +267,11 @@ jobs:
|
||||
group: ${{ github.workflow }}-${{ github.job }}-${{ needs.build-and-push.outputs.label }}-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
needs: precompile_static_models
|
||||
if: needs.build-and-push.outputs.runs_on != 'ubuntu-latest'
|
||||
if: |
|
||||
always() &&
|
||||
!contains(needs.*.result, 'failure') &&
|
||||
!contains(needs.*.result, 'cancelled') &&
|
||||
needs.build-and-push.outputs.runs_on != 'ubuntu-latest'
|
||||
runs-on:
|
||||
group: ${{ needs.build-and-push.outputs.runs_on }}
|
||||
env:
|
||||
|
Loading…
Reference in New Issue
Block a user