nix-runner-container/.forgejo/workflows/nix.yaml
Harald Hoyer 9f53232733
Some checks failed
/ build (push) Failing after 13s
feat: Add checkout step to nix workflow
- This update adds a new step into the nix workflow for code checkout using `actions/checkout@v3`.
- This is important to ensure the latest code is used for the `nix build` execution step.
2024-06-27 14:03:31 +02:00

8 lines
122 B
YAML

on: [push]
jobs:
build:
runs-on: nix
steps:
- uses: actions/checkout@v3
- run: nix build -L .runner