Added a banner to the default admin page. Please have mercy on me =( #48
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: "cachix" | |
on: | |
pull_request: | |
push: | |
jobs: | |
cachix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: jlumbroso/free-disk-space@main | |
with: | |
tool-cache: true | |
- uses: docker/setup-qemu-action@v3 | |
- uses: actions/checkout@v3 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: cachix/cachix-action@v14 | |
with: | |
name: nicpkgs | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
skipAddingSubstituter: true | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- run: nix build .#everything | |
- run: nix build .#packages.aarch64-linux.everything --extra-platforms aarch64-linux |