Press/.woodpecker/main.yml

20 lines
526 B
YAML
Raw Normal View History

2023-07-02 19:23:59 +02:00
steps:
build:
image: node:latest
commands:
- apt-get update && apt-get install -y --no-install-recommends build-essential
2023-07-02 19:23:59 +02:00
- cd src
- npm install
- npx presskit build --output ../out --pretty-links --collapse-menu --clean-build-folder
- cp .htaccess ../out
deploy:
image: debian:latest
when:
- event: [push, manual]
2023-07-02 19:24:15 +02:00
branch: main
2023-07-02 19:23:59 +02:00
commands:
- rm -rfv /var/www/press/*
- cp -rv out/. /var/www/press
volumes:
- /var/www/press:/var/www/press