rimgo/.woodpecker/.deploy.yml

15 lines
361 B
YAML
Raw Normal View History

2022-07-13 18:17:23 +00:00
pipeline:
deploy:
image: alpine:latest
2022-07-13 18:17:23 +00:00
commands:
- apk update && apk --no-cache add curl git
- wget -O - https://fly.io/install.sh | sh
- git clone https://codeberg.org/video-prize-ranch/fly-cfg.git
- cd fly-cfg
- /root/.fly/bin/flyctl deploy --detach
2022-07-13 18:17:23 +00:00
secrets: [fly_api_token]
depends_on:
- build
skip_clone: true