52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
kind: pipeline
|
|
name: default
|
|
type: docker
|
|
|
|
steps:
|
|
- name: flake8
|
|
image: python:slim
|
|
commands:
|
|
- pip install flake8
|
|
- flake8 --max-line-length 111
|
|
- name: epub
|
|
image: python
|
|
commands:
|
|
- pip install -r requirements.txt
|
|
- python livres_fr.py
|
|
- python livres_en.py
|
|
- name: pdf
|
|
image: debian:10-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
|
|
|
|
---
|
|
kind: pipeline
|
|
name: dependabot
|
|
type: docker
|
|
|
|
steps:
|
|
- name: dependabot-pip
|
|
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: pip
|
|
|
|
trigger:
|
|
event:
|
|
- cron
|