diff options
author | Franck Cuny <franck@fcuny.net> | 2022-05-11 12:20:07 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-05-11 12:20:07 -0700 |
commit | 74fb4a4a13afa64c0324194825948d3502848617 (patch) | |
tree | 2be09aab796975c0f84a1538252493253e8c0532 | |
parent | add flake support (diff) | |
download | world-74fb4a4a13afa64c0324194825948d3502848617.tar.gz |
add drone configuration
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/notes/.drone.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/users/fcuny/notes/.drone.yml b/users/fcuny/notes/.drone.yml new file mode 100644 index 0000000..ee50017 --- /dev/null +++ b/users/fcuny/notes/.drone.yml @@ -0,0 +1,18 @@ +--- +kind: pipeline +type: exec +name: default + +trigger: + event: + - push + branch: + - main + +steps: + - name: deploy + environment: + FLY_API_TOKEN: + from_secret: FLY_API_TOKEN + commands: + - nix run .#deploy |