Compare commits

..

4 commits

Author SHA1 Message Date
Bruno BELANYI 267f5c8598 ci: fix path to build output 2021-08-08 20:05:40 +02:00
Bruno BELANYI 454d2b969e ci: add check step 2021-08-08 20:05:40 +02:00
Bruno BELANYI 0ed5b0fb64 nix: use eachDefaultSystem
Due to the pre-commit check not having every system available...
2021-08-08 20:05:40 +02:00
Bruno BELANYI 67646b1f92 ci: use exec runner 2021-08-08 20:05:40 +02:00

View file

@ -1,3 +1,4 @@
---
kind: pipeline
type: exec
name: deploy CV
@ -13,9 +14,9 @@ steps:
- name: deploy
commands:
- nix run github:ambroisie/nix-config#drone-scp
- nix run 'github:ambroisie/nix-config#drone-scp'
environment:
SCP_SOURCE: '*.pdf'
SCP_SOURCE: *.pdf
SCP_RM: true # Make sure only the newly generated files are left
SCP_HOST:
from_secret: ssh_host
@ -51,3 +52,4 @@ steps:
status:
- failure
- success
...