feat: add more context to error messages (#1701) #372
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: | |
push: | |
branches: [main] | |
jobs: | |
publish: | |
name: Publish Flake | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v25 | |
- name: Authenticate with Cachix | |
uses: cachix/cachix-action@v14 | |
with: | |
name: yazi | |
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
- name: Build Flake | |
run: nix build -L |