ci: use exec runner

This commit is contained in:
Bruno BELANYI 2021-08-08 20:01:11 +02:00
parent 083f985888
commit 16750e7161

View file

@ -1,28 +1,28 @@
kind: pipeline kind: pipeline
type: exec
name: deploy CV name: deploy CV
steps: steps:
- name: build - name: build
image: aergus/latex
pull: always
commands: commands:
- make - nix develop -c make
- name: deploy - name: deploy
image: appleboy/drone-scp commands:
settings: - nix run github:ambroisie/nix-config#drone-scp
source: /drone/src/*.pdf environment:
strip_components: 2 # Make sure the tarball doesn't contain leading path SCP_SOURCE: /drone/src/*.pdf
rm: true # Make sure only the newly generated files are left SCP_STRIP_COMPONENTS: 2 # Make sure the tarball doesn't contain leading path
host: SCP_RM: true # Make sure only the newly generated files are left
SCP_HOST:
from_secret: ssh_host from_secret: ssh_host
target: SCP_TARGET:
from_secret: ssh_target from_secret: ssh_target
username: SCP_USERNAME:
from_secret: ssh_user from_secret: ssh_user
key: SCP_KEY:
from_secret: ssh_key from_secret: ssh_key
port: SCP_PORT:
from_secret: ssh_port from_secret: ssh_port
when: when:
branch: branch:
@ -31,18 +31,20 @@ steps:
exclude: exclude:
- pull_request - pull_request
- name: notify
image: plugins/matrix - name: notifiy
settings: commands:
homeserver: - nix run github:ambroisie/matrix-notifier
environment:
ADDRESS:
from_secret: matrix_homeserver from_secret: matrix_homeserver
roomid: ROOM:
from_secret: matrix_roomid from_secret: matrix_roomid
username: USER:
from_secret: matrix_username from_secret: matrix_username
password: PASS:
from_secret: matrix_password from_secret: matrix_password
trigger: when:
status: status:
- failure - failure
- success - success