We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4087d4 commit 0d311c9Copy full SHA for 0d311c9
1 file changed
.github/workflows/push.yaml
@@ -1,4 +1,4 @@
1
-name: use nix
+name: Build with nix
2
3
on: [push, pull_request, workflow_dispatch]
4
jobs:
@@ -29,9 +29,13 @@ jobs:
29
purge-primary-key: never
30
31
- name: Check nix flake
32
- run: |
33
- nix flake check
+ run: nix flake check
34
35
- name: Build backend with nix
36
37
- nix build .#backend
+ run: nix build .#backend
+
+ - name: Upload built nix package
38
+ uses: actions/upload-artifact@v4
39
+ with:
40
+ name: backend
41
+ path: ./result/**/*
0 commit comments