1
0
Fork 0
docs/.drone.yml
Nick Slowinski fed83c361d
Einige Prüfungen sind fehlgeschlagen
continuous-integration/drone/push Build is failing
13
2023-06-26 15:39:47 +02:00

26 Zeilen
Kein EOL
526 B
YAML

name: amd64
kind: pipeline
type: docker
platform:
os: linux
arch: amd64
clone:
disable: true
steps:
- name: clone
image: registry.access.redhat.com/ubi9/python-311:1-12
commands:
- mkdir ~/docs && cd ~/docs
- git clone https://git.nick-slowinski.de/NickSlowinski/docs.git .
- git checkout $DRONE_COMMIT -b $DRONE_BRANCH
- name: build
image: registry.access.redhat.com/ubi9/python-311:1-12
commands:
- cd ~/docs
- pwd
- pip install --upgrade pip
- pip install -r requirements.txt
- mkdocs build