zine/.woodpecker.yml

26 lines
725 B
YAML
Raw Normal View History

steps:
2024-01-15 20:33:03 +00:00
check:
image: fish
commands:
- $HOME/.bun/bin/bun install
- $HOME/.bun/bin/bun astro check
when:
evaluate: 'CI_COMMIT_AUTHOR == "cloudyy"'
preview:
image: fish
commands:
- $HOME/.bun/bin/bun astro build --outDir /srv/http/zine-preview
when:
event: ['deployment']
path:
exclude: ['README.md', 'scripts/*']
2024-01-24 21:45:20 +00:00
build:
image: fish
commands:
- $HOME/.bun/bin/bun astro build --outDir /srv/http/zine
2024-01-24 21:45:20 +00:00
when:
branch: main
event: ['push', 'deployment']
path:
exclude: ['README.md', 'scripts/*']