Skip to content

Commit

Permalink
refactor: add version specific check to nvidia (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
bsherman authored Mar 27, 2024
1 parent 3f93913 commit 70b77df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }}

jobs:
push-ghcr:
build_ublue:
name: nvidia
runs-on: ubuntu-22.04
permissions:
Expand Down Expand Up @@ -260,13 +260,13 @@ jobs:
echo "${{ toJSON(steps.push.outputs) }}"
check:
name: Check all builds successful
name: Check all ${{ inputs.fedora_version }} builds successful
if: ${{ !cancelled() }}
runs-on: ubuntu-latest
needs: [push-ghcr]
needs: [build_ublue]
steps:
- name: Exit on failure
if: ${{ needs.push-ghcr.result == 'failure' }}
if: ${{ needs.build_ublue.result == 'failure' }}
shell: bash
run: exit 1
- name: Exit
Expand Down

0 comments on commit 70b77df

Please sign in to comment.