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 8c9f0b9 commit 246351fCopy full SHA for 246351f
.github/workflows/nix.yml
@@ -1,6 +1,7 @@
1
-name: "Nix CI"
+name: "CI - Nix"
2
3
-on: [pull_request, push]
+on:
4
+ push:
5
6
jobs:
7
tests:
@@ -11,10 +12,9 @@ jobs:
11
12
os: [ubuntu]
13
steps:
14
- uses: actions/checkout@v4
- - uses: DeterminateSystems/nix-installer-action@main
15
- - uses: DeterminateSystems/magic-nix-cache-action@main
16
- - run: nix --accept-flake-config build -L
17
- - run: nix --accept-flake-config run .#cachix push gepetto $(readlink result)
18
- if: github.repository_owner == 'humanoid-path-planner'
19
- env:
20
- CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
+ - uses: cachix/install-nix-action@v27
+ - uses: cachix/cachix-action@v15
+ with:
+ name: gepetto
+ authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
+ - run: nix build -L
0 commit comments