Refactor .woodpecker.yml pipeline configuration
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

- Renamed pipeline to "deploy" for clarity.
- Adjusted `when` conditions structure for branch and event targeting.
This commit is contained in:
2025-07-15 21:10:11 +02:00
parent 58522f2ae0
commit f4c75ea941

View File

@ -1,11 +1,15 @@
pipeline:
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:
event: push
branch:
- main
when:
branch:
- main
event:
- push