Files
nix-infrastructure/.gitea/workflows/web-deploy.yaml
henrik 5d51bb0511
All checks were successful
Nix Web Proxy Worker / checkout-repo (push) Successful in 9s
Nix Web Proxy Worker / setup-nixos-runner (push) Successful in 6s
Moved checkout to seperate job
2025-10-03 17:24:14 +02:00

21 lines
455 B
YAML

name: Nix Web Proxy Worker
run-name: Web Proxy - Nix
on: [push, merge]
jobs:
checkout-repo:
run-on: ubuntu-latest
steps:
- name: checkout
uses: https://github.com/actions/checkout@v4
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