website/.woodpecker.yml
Sakooooo c78bc6f5ef
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
a
2024-12-01 18:55:13 +04:00

26 lines
654 B
YAML

when:
- event: push
branch: master
steps:
build:
image: node
commands:
- echo "Installing pnpm..."
- npm install -g pnpm
- echo "Installing dependencies..."
- pnpm i --frozen-lockfile
- echo "Building..."
- pnpm run build
deploy:
image: node
environment:
CLOUDFLARE_ACCOUNT_ID:
from_secret: cloudflare_account_id
CLOUDFLARE_API_TOKEN:
from_secret: cloudflare_api_token
commands:
- echo "Installing wrangler..."
- npm install -g wrangler
- echo "Deploying site..."
- npx wrangler pages deploy dist --project-name sakosite --branch main