mirror of
https://github.com/DeterminateSystems/nix-installer-action.git
synced 2024-11-23 04:08:52 +03:00
The Github Action for the Determinate Nix Installer
5866c409ef
Since you are likely to be rate-limited if you use this action without a GitHub API token, default the action's `github-token` input to the `token` from the `github` context[^1]. Closes #3 [^1]: https://docs.github.com/en/actions/learn-github-actions/contexts#github-context |
||
---|---|---|
.github/workflows | ||
action.yml | ||
LICENSE | ||
README.md |
Nix Installer Action
You can use nix-installer
as a Github action like so:
on:
pull_request:
push:
branches: [main]
jobs:
lints:
name: Build
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
with:
# Allow the installed Nix to make authenticated Github requests.
# If you skip this, you will likely get rate limited.
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run `nix build`
run: nix build .
See .github/workflows/ci.yml
for a full example.