fix system asuna #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Build Hosts' | |
on: | |
push: | |
pull_request: | |
jobs: | |
asuna: | |
runs-on: ubuntu-latest | |
environment: systemconfig | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: cachix/cachix-action@v14 | |
with: | |
name: nix-conf | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- run: nix build .#nixosConfigurations.$GITHUB_JOB.config.system.build.toplevel | |
- run: echo "host $GITHUB_JOB OK" | |
sinon: | |
runs-on: ubuntu-latest | |
environment: systemconfig | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: cachix/cachix-action@v14 | |
with: | |
name: nix-conf | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- run: nix build .#nixosConfigurations.$GITHUB_JOB.config.system.build.toplevel | |
- run: echo "host $GITHUB_JOB OK" |