Files
nix-infrastructure/.gitea/workflows/web-deploy.yaml
henrik 75f7b19e99
Some checks failed
Nix Web Proxy Worker / setup-nixos-runner (push) Failing after 1m30s
Attempt to run nix shell in a new bash shell
2025-10-03 17:59:24 +02:00

18 lines
498 B
YAML

name: Nix Web Proxy Worker
run-name: Web Proxy - Nix
on: [push, merge]
jobs:
setup-nixos-runner:
run-on: ubuntu-latest
container:
image: node:lts
steps:
- uses: actions/checkout@v4
- name: Install Nix
run: |
curl --proto '=https' --tlsv1.2 -L https://nixos.org/nix/install > installer.sh
chmod +x installer.sh
./installer.sh --daemon --yes
- name: nixing
run: bash -c nix-shell -p nix-info --run "nix-info -m"