ci: remove aarch64-linux runner from cachix workflow #4
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: Push to Cachix | |
| on: | |
| push: | |
| branches: [main] | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| push: | |
| strategy: | |
| matrix: | |
| include: | |
| - system: x86_64-linux | |
| runner: ubuntu-latest | |
| runs-on: ${{ matrix.runner }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: DeterminateSystems/nix-installer-action@main | |
| - uses: cachix/cachix-action@v16 | |
| with: | |
| name: firefly-toolbox | |
| authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
| - name: Build all packages | |
| run: | | |
| nix build --no-link --print-out-paths --impure --expr ' | |
| builtins.attrValues (builtins.getFlake (toString ./.)).packages.${{ matrix.system }} | |
| ' | cachix push firefly-toolbox |