Files
nix-infrastructure/.gitea/workflows/web-deploy.yaml
henrik ea83b2589f
Some checks failed
Nix Web Proxy Worker / setup-nixos-runner (push) Failing after 14s
Ensure curl is present
2025-10-03 17:43:10 +02:00

19 lines
508 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
- run: apt update && apt install curl -y
- name: echo in image
run: echo "Hello Workflow world!"
- name: List current folder
run: ls -la
- name: Install Nix
run: "sh <(curl --proto '=https' --tlsv1.2 -L https://nixos.org/nix/install) --no-daemon"