Fix entries controller responding with 404 when logged out/unauthoriz… #474
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 | |
- 'stable/**' | |
jobs: | |
packages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Cachix | |
uses: cachix/cachix-action@v15 | |
with: | |
name: feed-reader | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- run: nix build -L --no-link --impure ".#feed-reader.env" | |
- run: nix build -L --no-link --impure ".#feed-reader" | |
shell: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Cachix | |
uses: cachix/cachix-action@v15 | |
with: | |
name: feed-reader | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- run: nix build -L --no-link .#devShells.$(nix eval --impure --expr "builtins.currentSystem").feed-reader |