Merge pull request #85 from cachix/flakes-github-token

flakes: pass github token to shield against rate limiting
This commit is contained in:
Domen Kožar 2021-06-24 18:32:40 +02:00 committed by GitHub
commit aeb0bfb217
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -75,6 +75,7 @@ jobs:
install_options: '--tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve'
extra_nix_config: |
experimental-features = nix-command flakes
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- run: nix flake show github:NixOS/nixpkgs
installer-options:

View file

@ -58,6 +58,7 @@ jobs:
install_options: '--tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve'
extra_nix_config: |
experimental-features = nix-command flakes
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- run: nix build
- run: nix flake check
```