chore: update flake lock #258
Workflow file for this run
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: Flake Build | |
| on: | |
| pull_request: | |
| release: | |
| types: | |
| - published | |
| jobs: | |
| flake-build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - ubuntu-24.04-arm | |
| - macos-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| - uses: cachix/install-nix-action@630ae543ea3a38a9a4166f03376c02c50f408342 # v31 | |
| - name: Install Hibernation CLI | |
| uses: profiidev/hibernation@d1d0857b79670ea9edb16431850bff98f93cdcbe # v0 | |
| if: github.event_name != 'pull_request' | |
| with: | |
| url: ${{ secrets.HIBERNATION_URL }} | |
| token: ${{ secrets.HIBERNATION_TOKEN }} | |
| signing-key: ${{ secrets.HIBERNATION_SIGNING_KEY }} | |
| - name: Run build | |
| run: nix build . -Lv --print-out-paths --accept-flake-config | |
| - name: Cache results | |
| if: github.event_name != 'pull_request' | |
| run: hibernation push projects $(readlink result) |