Files
nix-infrastructure/.gitea/workflows/web-deploy.yaml
henrik 9b1e59ff73
Some checks failed
Nix Web Proxy Worker / setup-nixos-runner (push) Failing after 3m9s
adds verbose parameter
2025-10-03 20:27:53 +02:00

15 lines
495 B
YAML

name: Nix Web Proxy Worker
run-name: Web Proxy - Nix
on: [push, merge]
jobs:
setup-nixos-runner:
run-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.WEB_PROXY_SSH_PRIVATE_KEY }}
- uses: cachix/install-nix-action@v31
- name: nixing
run: nix-shell shell.nix --run "nixos-rebuild switch --no-flake --target-host ${{ vars.WEB_PROXY_TARGET_HOST }} --verbose"