oxaliq.net/.woodpecker/build-and-deploy.yml

33 lines
829 B
YAML
Raw Normal View History

when:
branch:
include: [ main ]
steps:
build:
image: debian:bookworm-slim
commands:
- apt update
- apt -yq install racket ca-certificates
- yes Y | raco pkg install --no-docs csv-reading
2024-01-15 02:06:09 +00:00
- raco exe oxaliq.net.rkt
- raco distribute dist oxaliq.net
deploy:
image: alpine:latest
secrets:
2024-04-17 00:40:53 +00:00
- oxaliq_deploy_ssh
commands:
- echo "SETTING UP SSH"
- apk add openssh-client
- mkdir -p $HOME/.ssh
2024-04-17 00:40:53 +00:00
- ssh-keyscan -t ed25519 oxaliq.net >> $HOME/.ssh/known_hosts
- echo "$oxaliq_deploy_ssh" > $HOME/.ssh/id_ed25519
- chmod 0600 $HOME/.ssh/id_ed25519
- echo "SSH SETUP DONE"
- echo "RUNNING DEPLOY SCRIPT"
- ./.woodpecker/deploy.sh
when:
# Only try to deploy if previous step is successful
status: success