geforkt von nick-slowinski.de/docs
Nick Slowinski
eb48ee160b
Alle Prüfungen waren erfolgreich
continuous-integration/drone/push Build is passing
22 Zeilen
Kein EOL
421 B
YAML
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 |