Michel Roux
120d985f09
All checks were successful
continuous-integration/drone/push Build is passing
53 lines
1.0 KiB
YAML
53 lines
1.0 KiB
YAML
kind: pipeline
|
|
name: default
|
|
type: docker
|
|
|
|
steps:
|
|
- name: epub
|
|
image: node:lts
|
|
commands:
|
|
- npm i
|
|
- ./node_modules/.bin/eslint *.js
|
|
- node livres_fr
|
|
- node livres_en
|
|
- name: pdf
|
|
image: debian:stable-slim
|
|
commands:
|
|
- apt-get update
|
|
- apt-get install -y --no-install-recommends calibre
|
|
- apt-get install -y curl
|
|
- bash -x convert.sh
|
|
- bash -x upload.sh
|
|
environment:
|
|
USERNAME:
|
|
from_secret: nextcloud_user
|
|
PASSWORD:
|
|
from_secret: nextcloud_password
|
|
|
|
trigger:
|
|
event:
|
|
exclude:
|
|
- cron
|
|
|
|
---
|
|
kind: pipeline
|
|
name: dependabot
|
|
type: docker
|
|
|
|
steps:
|
|
- name: dependabot-node
|
|
image: xefir/docker-dependabot-gitea
|
|
environment:
|
|
GITHUB_ACCESS_TOKEN:
|
|
from_secret: github_access_token
|
|
GITEA_ACCESS_TOKEN:
|
|
from_secret: gitea_access_token
|
|
PROJECT_PATH: Xefir/Auberge_Vagabonde
|
|
GITEA_HOSTNAME: git.crystalyx.net
|
|
GITEA_SCHEME: https
|
|
PACKAGE_MANAGER: npm_and_yarn
|
|
|
|
trigger:
|
|
event:
|
|
- cron
|