autobaan/.woodpecker/deploy.yaml

21 lines
323 B
YAML
Raw Normal View History

when:
- event: push
branch: main
- event: manual
branch: main
steps:
2026-03-24 16:58:07 +01:00
- name: deploy
2026-06-19 11:27:22 +02:00
image: docker.io/node:24-slim
2026-06-19 11:08:01 +02:00
environment:
PUPPETEER_SKIP_DOWNLOAD: true
volumes:
- /etc/ssh:/etc/ssh
commands:
2026-06-19 11:27:22 +02:00
- apt install git
- npm ci
- npm run deploy
depends_on:
- test