Compare commits

..

4 commits

Author SHA1 Message Date
Bruno BELANYI 2a50374691 ci: fix path to build output
Some checks failed
continuous-integration/drone/push Build is failing
2021-08-08 20:08:01 +02:00
Bruno BELANYI 25ae1ab53e ci: add check step 2021-08-08 20:08:01 +02:00
Bruno BELANYI 75630df80d nix: use eachDefaultSystem
Due to the pre-commit check not having every system available...
2021-08-08 20:08:01 +02:00
Bruno BELANYI 46d05fe4ae ci: use exec runner 2021-08-08 20:08:01 +02:00

View file

@ -1,4 +1,3 @@
---
kind: pipeline
type: exec
name: deploy CV
@ -14,9 +13,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
@ -52,4 +51,3 @@ steps:
status:
- failure
- success
...