1
0
Fork 0

20
Alle Prüfungen waren erfolgreich
continuous-integration/drone/push Build is passing

Dieser Commit ist enthalten in:
Nick Slowinski 2023-06-26 16:12:23 +02:00
Ursprung eb48ee160b
Commit 922c979e74
Signiert von: nickslowinski
GPG-Schlüssel-ID: A28671573AA347CC

Datei anzeigen

@ -10,13 +10,26 @@ clone:
disable: true
steps:
- name: clone and build
- name: clone
image: registry.access.redhat.com/ubi9/python-311:1-12
volumes:
- name: cache
path: /opt/app-root/src
commands:
- mkdir ~/docs && cd ~/docs
- echo $DRONE_REPO_LINK
- git clone $DRONE_REPO_LINK .
- git checkout $DRONE_COMMIT -b $DRONE_BRANCH
- name: build
image: registry.access.redhat.com/ubi9/python-311:1-12
volumes:
- name: cache
path: /opt/app-root/src
commands:
- cd ~/docs
- pip install --upgrade pip
- pip install -r requirements.txt
- mkdocs build
- mkdocs build
volumes:
- name: cache
temp: {}