persephone: added site to privoxy list #134
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: "Populate cachix cache" | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - 'npins/sources.json' | |
| - 'flake.lock' | |
| - 'pkgs/**' | |
| - 'nixosModules/server/caddy.nix' | |
| jobs: | |
| populate-cache: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dorny/paths-filter@v3 | |
| id: fltr | |
| with: | |
| filters: | | |
| xvim: | |
| - 'pkgs/nvim/**' | |
| caddy: | |
| - 'nixosModules/server/caddy.nix' | |
| lockfile: | |
| - 'flake.lock' | |
| pins: | |
| - 'npins/sources.json' | |
| - uses: cachix/install-nix-action@v25 | |
| with: | |
| nix_path: nixpkgs=channel:nixos-unstable | |
| - uses: cachix/cachix-action@v14 | |
| with: | |
| name: rexielscarlet | |
| authToken: '${{ secrets.CACHIX_API_KEY }}' | |
| - name: build xvim (neovim) | |
| if: steps.fltr.outputs.xvim == 'true' || steps.fltr.outputs.pins == 'true' || steps.fltr.outputs.lockfile == 'true' | |
| run: nix build .#xvim.default | |
| - name: build stash | |
| if: steps.fltr.outputs.lockfile == 'true' | |
| run: nix build .#stash | |
| - name: build Seraphine's caddy package | |
| if: steps.fltr.outputs.caddy == 'true' || steps.fltr.outputs.lockfile == 'true' | |
| run: nix build .#nixosConfigurations.Seraphine.config.services.caddy.package |