Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
marcopernpruner committed Sep 26, 2024
1 parent 8f09a85 commit 451252b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/update-cs-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
update-members:
runs-on: ubuntu-latest
needs: update-destinations
if: ${{ needs.check-changes.outputs.members == 'true' && (success() || skipped())}}
if: ${{ needs.check-changes.outputs.members == 'true' && success()}}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -85,7 +85,7 @@ jobs:
update-people:
runs-on: ubuntu-latest
needs: update-members
if: ${{ needs.check-changes.outputs.people == 'true' && (success() || skipped())}}
if: ${{ needs.check-changes.outputs.people == 'true' && success()}}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -105,7 +105,7 @@ jobs:
update-people-pictures:
runs-on: ubuntu-latest
needs: update-people
if: ${{ needs.check-changes.outputs.people-pictures == 'true' && (success() || skipped())}}
if: ${{ needs.check-changes.outputs.people-pictures == 'true' && success()}}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -125,7 +125,7 @@ jobs:
update-publications:
runs-on: ubuntu-latest
needs: update-people-pictures
if: ${{ needs.check-changes.outputs.publications == 'true' && (success() || skipped())}}
if: ${{ needs.check-changes.outputs.publications == 'true' && success()}}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -143,7 +143,7 @@ jobs:
update-theses:
runs-on: ubuntu-latest
needs: update-publications
if: ${{ needs.check-changes.outputs.theses == 'true' && (success() || skipped())}}
if: ${{ needs.check-changes.outputs.theses == 'true' && success()}}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 451252b

Please sign in to comment.