We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 533f36c commit 43d616bCopy full SHA for 43d616b
.buildkite/pipeline.yml
.github/workflows/ci.yaml
@@ -0,0 +1,24 @@
1
+name: CI
2
+on:
3
+ pull_request:
4
+ push:
5
+ branches: ["release"]
6
+
7
+jobs:
8
+ check:
9
+ runs-on: [self-hosted, nix]
10
+ steps:
11
+ - uses: actions/checkout@v2
12
13
+ - name: Check Nix flake
14
+ run: nix flake check -L
15
16
+ deploy:
17
18
+ if: github.ref == 'refs/heads/release'
19
+ needs: [check]
20
21
22
23
+ - name: Deploy
24
+ run: nix shell -f. inputs.deploy-rs.defaultPackage.x86_64-linux -c deploy -s
0 commit comments