Michel Roux
4a57f12921
All checks were successful
continuous-integration/drone/push Build is passing
29 lines
544 B
YAML
29 lines
544 B
YAML
kind: pipeline
|
|
name: default
|
|
type: docker
|
|
|
|
steps:
|
|
- name: epub
|
|
image: node
|
|
commands:
|
|
- yarn install
|
|
- ./node_modules/.bin/eslint *.js
|
|
- node livres
|
|
- name: pdf
|
|
image: linuxserver/calibre
|
|
commands:
|
|
- bash -x convert.sh
|
|
- bash -x upload.sh
|
|
environment:
|
|
USERNAME:
|
|
from_secret: nextcloud_user
|
|
PASSWORD:
|
|
from_secret: nextcloud_password
|
|
QTWEBENGINE_CHROMIUM_FLAGS: --no-sandbox
|
|
when:
|
|
branch:
|
|
- master
|
|
event:
|
|
- push
|
|
- cron
|