Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
- Renamed pipeline to "deploy" for clarity. - Adjusted `when` conditions structure for branch and event targeting.
15 lines
258 B
YAML
15 lines
258 B
YAML
name: deploy
|
|
|
|
steps:
|
|
deploy:
|
|
image: node:20
|
|
commands:
|
|
- curl -L https://fly.io/install.sh | sh
|
|
- export PATH="$HOME/.fly/bin:$PATH"
|
|
- flyctl deploy --config fly.toml --app gallus-pub
|
|
|
|
when:
|
|
branch:
|
|
- main
|
|
event:
|
|
- push |