rimgo/.woodpecker/.deploy.yml

18 lines
411 B
YAML

pipeline:
deploy:
image: alpine:latest
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/rimgo
- /root/.fly/bin/flyctl deploy --detach --remote-only
secrets: [fly_api_token]
when:
branch: main
depends_on:
- build
skip_clone: true