soulbound_faucet/.woodpecker.yml

18 řádky
377 B
YAML

pipeline:
build_and_test:
image: node
commands:
- node --version
- npm ci
- npm run build
secrets: [AR]
deploy:
image: rclone/rclone
commands:
- "rclone sync dist/ :sftp: --sftp-host frontier.gwei.cz --sftp-user eb2-faucet --sftp-port 2022 --sftp-pass $RCLONE_PASS -v"
secrets: [RCLONE_PASS]
when:
branch: [main]