ci: add workflow to build packages in this repository #2
This file contains hidden or 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
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@v17 | |
| with: | |
| extra_nix_config: | | |
| access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
| # Note: this would only work if Cargo is included in the Nix shell | |
| - name: build | |
| run: | | |
| nix-build ./web/default.nix | |
| nix-build ./display/nix/default.nix | |
| nix-build ./display/nix/musl.nix |