Don't wait for after-checks

This commit is contained in:
Ben Meadors 2024-09-24 09:10:29 -05:00
parent e4d0e38f37
commit 10869ea10a

View File

@ -125,6 +125,7 @@ jobs:
after-checks:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'workflow_dispatch' }}
needs: [check]
steps:
- name: Checkout code
@ -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