Skip to content

Commit

Permalink
Don't wait for after-checks
Browse files Browse the repository at this point in the history
  • Loading branch information
thebentern committed Sep 24, 2024
1 parent e4d0e38 commit 10869ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ jobs:

after-checks:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'workflow_dispatch' }}
needs: [check]
steps:
- name: Checkout code
Expand Down Expand Up @@ -231,7 +232,7 @@ jobs:
release-artifacts:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'workflow_dispatch' }}
needs: [gather-artifacts, after-checks]
needs: [gather-artifacts]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 10869ea

Please sign in to comment.