Files
nix-infrastructure/.gitea/workflows/web-deploy.yaml
henrik a75a7579b1
Some checks failed
Nix Web Proxy Worker / checkout-repo (push) Failing after 59s
Nix Web Proxy Worker / setup-nixos-runner (push) Has been skipped
Attempt to checkout repo first...
2025-10-03 17:16:52 +02:00

21 lines
432 B
YAML

name: Nix Web Proxy Worker
run-name: Web Proxy - Nix
on: [push, merge]
jobs:
checkout-repo:
run-on: ubuntu-latest
steps:
- name: Ensure cloned repo
run: git pull
setup-nixos-runner:
run-on: ubuntu-latest
needs: [checkout-repo]
container:
image: ubuntu
steps:
- name: echo in image
run: echo "Hello Workflow world!"
- name: List current folder
run: ls -la