This repository was archived by the owner on May 21, 2025. It is now read-only.
allow access key to access private demos #141
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
| name: "CI" | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| matrix: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| matrix: ${{ steps.set-matrix.outputs.matrix }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: cachix/install-nix-action@v27 | |
| - id: set-matrix | |
| run: echo "matrix={\"check\":$(nix eval --json '.#checks.x86_64-linux' --apply 'builtins.attrNames')}" | tee -a $GITHUB_OUTPUT | |
| checks: | |
| runs-on: ubuntu-latest | |
| needs: [matrix] | |
| strategy: | |
| fail-fast: false | |
| matrix: ${{fromJson(needs.matrix.outputs.matrix)}} | |
| name: ${{ matrix.check }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: cachix/install-nix-action@v26 | |
| - uses: icewind1991/attic-action@v1 | |
| with: | |
| name: ci | |
| instance: https://cache.icewind.me | |
| authToken: "${{ secrets.ATTIC_TOKEN }}" | |
| - run: nix build .#checks.x86_64-linux.${{ matrix.check }} |