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 ff69756 commit f45e19bCopy full SHA for f45e19b
2 files changed
.github/workflows/build-nix.yml
@@ -7,14 +7,16 @@ jobs:
7
tests:
8
runs-on: ubuntu-latest
9
steps:
10
- - uses: actions/checkout@v2.4.0
11
- - uses: cachix/install-nix-action@v15
12
- with:
13
- extra_nix_config: |
14
- access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
15
- - uses: cachix/cachix-action@v10
+ - name: git checkout
+ uses: actions/checkout@v2.4.0
+ - name: Install Nix
+ uses: DeterminateSystems/nix-installer-action@main
+ - name: configure cachix
+ uses: cachix/cachix-action@v10
16
with:
17
name: ranfdev-geopard
18
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
19
- - run: nix --print-build-logs flake check
20
- - run: nix --print-build-logs build
+ - name: run checks
+ run: nix --print-build-logs flake check
21
+ - name: build
22
+ run: nix --print-build-logs build
0 commit comments