diff options
| author | seth <[email protected]> | 2023-11-13 22:07:21 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-11-13 22:09:07 -0500 |
| commit | 50f9307b31f338da59c7c9cdbfe88afa5e28b12e (patch) | |
| tree | 443a516a4e0ed0f95e423af44e8cc3fd73724d8a /.github/workflows | |
| parent | 3e5263a327a3261d3d9957d723e9dc0e1d96e094 (diff) | |
ci: try to fix deploy conditional
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/deploy.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 939c811..4612b5d 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -9,8 +9,8 @@ jobs: deploy: runs-on: ubuntu-latest - # only run after garnix - if: github.event.app.slug == 'garnix-ci' + # only run after garnix succeeds + if: github.event.check_suite.app.slug == 'garnix-ci' && github.event.check_suite.conclusion == 'success' steps: - uses: actions/checkout@v4 |
