1
0
Fork 0
docs/.drone.yml
Nick Slowinski eb48ee160b
Alle Prüfungen waren erfolgreich
continuous-integration/drone/push Build is passing
15
2023-06-26 15:51:13 +02:00

22 Zeilen
Kein EOL
421 B
YAML

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