softinio.com/.woodpecker.yml

25 lines
612 B
YAML
Raw Normal View History

2024-02-10 23:55:06 -08:00
steps:
- name: build
image: nixos/nix
commands:
- echo 'experimental-features = flakes nix-command' >> /etc/nix/nix.conf
- nix build
2024-02-11 10:28:06 -08:00
- nix flake show
2024-02-16 20:54:59 -08:00
- nix flake info
2024-02-10 23:55:06 -08:00
when:
event: [push, pull_request]
2024-02-16 20:50:22 -08:00
- name: deploy
image: nixos/nix
commands:
- echo 'experimental-features = flakes nix-command' >> /etc/nix/nix.conf
2024-02-16 20:59:03 -08:00
- nix build
2024-02-16 20:54:59 -08:00
- ls result
- wrangler pages deploy result --branch=$CI_COMMIT_SOURCE_BRANCH --project-name=softinio
2024-02-16 20:50:22 -08:00
- echo "Deploy complete"
depends_on: [build]
when:
event: push
branch: test1