nix-conf/.woodpecker.yml
2023-04-11 21:55:39 +02:00

19 lines
671 B
YAML

pipeline:
check:
image: nixos/nix
commands:
- nix flake check --extra-experimental-features "flakes nix-command"
update:
image: nixos/nix
commands:
- export REPO_URL="https://$${CI_REPO_OWNER}:$${TOKEN}@codeberg.org/$${CI_REPO_OWNER}/$${CI_REPO_NAME}.git"
- git config --global user.email "woodpecker-ci@noreply.org"
- git config --global user.name "woodpecker-ci"
- git remote set-url origin "$${REPO_URL}"
- nix flake update --commit-lock-file --extra-experimental-features "flakes nix-command"
- git push origin HEAD:$CI_COMMIT_BRANCH
secrets: [ TOKEN ]
when:
event: cron
cron: update