geforkt von nick-slowinski.de/docs
Nick Slowinski
fed83c361d
Einige Prüfungen sind fehlgeschlagen
continuous-integration/drone/push Build is failing
26 Zeilen
Kein EOL
526 B
YAML
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 |