summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorseth <[email protected]>2023-12-29 05:57:31 -0500
committerseth <[email protected]>2023-12-29 05:57:31 -0500
commitebba4504d2faa0fed6ca8b2201243b9786f68b92 (patch)
tree3620b71bf9e81461bbaaf5ef775767cd4ad15983 /.github
parent63e54a973389d5c676f6a073ccd166000a3be76e (diff)
ci: remove release gate
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yaml19
1 files changed, 0 insertions, 19 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index b932e9d..f708fa8 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -69,22 +69,3 @@ jobs:
)
nix flake check "${args[@]}"
-
- gate:
- needs: [build, check]
-
- name: CI Gate
- runs-on: ubuntu-latest
-
- if: always()
-
- steps:
- - name: Exit with result
- run: |
- results=(
- "${{ needs.build.result }}"
- "${{ needs.check.result }}"
- )
-
- for result in "${results[@]}"; do [ "$result" != "success" ] && exit 1; done
- exit 0