Sam Therapy
3c957cf9a1
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: Sam Therapy <sam@samtherapy.net>
37 lines
No EOL
574 B
YAML
37 lines
No EOL
574 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: Deploy
|
|
|
|
steps:
|
|
- name: submodules
|
|
image: alpine/git
|
|
commands:
|
|
- git submodule update --init --recursive
|
|
|
|
- name: Build
|
|
depends_on:
|
|
- submodules
|
|
image: node:16
|
|
commands:
|
|
- yarn
|
|
- yarn build
|
|
when:
|
|
event:
|
|
- push
|
|
|
|
- name: Execute deploy script
|
|
depends_on:
|
|
- Build
|
|
image: ubuntu:latest
|
|
environment:
|
|
SSH_KEY:
|
|
from_secret: SSH_KEY
|
|
commands:
|
|
- apt update && apt install -y openssh-client rsync
|
|
- ./ci/add-key.sh
|
|
- ./ci/deploy.sh
|
|
when:
|
|
event:
|
|
- push
|
|
branch:
|
|
- froth |