1
0
website/.gitlab-ci.yml

13 lines
243 B
YAML
Raw Normal View History

2021-05-16 23:23:08 +03:00
image: yusdacra/nix-flake:latest
2020-03-15 20:12:27 +03:00
pages:
stage: deploy
script:
2021-05-16 23:28:31 +03:00
- nix build -L --show-trace
2021-05-17 04:07:51 +03:00
- mkdir public && cp -Hr result/* public
2021-05-17 04:25:33 +03:00
- nix-shell -p tree --run "tree public"
2020-03-15 20:12:27 +03:00
artifacts:
paths:
2021-05-16 23:28:31 +03:00
- public
2020-03-15 20:12:27 +03:00
only:
2021-05-16 23:25:24 +03:00
- master