Skip to content

Commit

Permalink
fix: always run jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
deemp committed Aug 27, 2023
1 parent c33904d commit b178d6c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ jobs:
- true
- false
runs-on: ${{ matrix.os }}
if: always()
steps:
- name: Checkout this repo
uses: actions/checkout@v3
Expand Down Expand Up @@ -157,7 +158,7 @@ jobs:
- 2
- 3
runs-on: ${{ matrix.os }}
if: ${{ always() }}
if: always()
steps:
- name: Checkout this repo
uses: actions/checkout@v3
Expand All @@ -180,6 +181,7 @@ jobs:
name: Check cache changes
needs: make-similar-caches
runs-on: ubuntu-20.04
if: always()
outputs:
ci-changed: ${{ steps.ci-changed.outputs.any_changed == 'true' }}
steps:
Expand All @@ -206,7 +208,7 @@ jobs:
- ubuntu-20.04
- ubuntu-22.04
runs-on: ${{ matrix.os }}
if: needs.check-cache-changes.outputs.ci-changed == 'true'
if: always() && needs.check-cache-changes.outputs.ci-changed == 'true'
steps:
- name: Checkout this repo
uses: actions/checkout@v3
Expand Down

0 comments on commit b178d6c

Please sign in to comment.