SouthFox
6538322a33
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
23 lines
466 B
YAML
23 lines
466 B
YAML
pipeline:
|
|
fix-link:
|
|
image: bash
|
|
commands:
|
|
- bash fix.sh
|
|
|
|
build:
|
|
image: klakegg/hugo:alpine
|
|
commands:
|
|
- hugo
|
|
|
|
render-links:
|
|
image: python:3.10.6
|
|
commands:
|
|
- pip install beautifulsoup4 lxml
|
|
- python soup.py
|
|
|
|
deploy:
|
|
image: node
|
|
secrets: [cloudflare_api_token ,cloudflare_account_id]
|
|
commands:
|
|
- npm install -g wrangler
|
|
- npx wrangler pages deploy public --project-name garden --commit-dirty=true
|