website/.woodpecker.yml
Sakooooo 5f9d769e06
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is running
[no ci] add rm step
2024-12-06 23:46:23 +04:00

28 lines
667 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 "Cleaning old files..."
- rm -r /tmp/output/{*,.*}
- echo "Moving new files..."
- cp -r dist/. /tmp/output
volumes:
- /home/docker/sakosite:/tmp/output