We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61cd698 commit 1c0ec45Copy full SHA for 1c0ec45
.github/workflows/push.yaml
@@ -29,12 +29,22 @@ jobs:
29
purge-last-accessed: 0
30
purge-primary-key: never
31
32
+ - uses: cachix/cachix-action@v15
33
+ with:
34
+ name: polyfrost
35
+ authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
36
+ signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}"
37
+ skipPush: true
38
+
39
- name: Check nix flake
40
run: nix -L flake check --keep-going
41
42
- name: Build backend with nix
43
run: nix -L build .#backend
44
45
+ - name: Push to Cachix
46
+ run: cachix push polyfrost ./result
47
48
- name: Upload built nix package
49
uses: actions/upload-artifact@v4
50
with:
0 commit comments