geforkt von nick-slowinski.de/docs
disable builds when renovate pushes changes
Dieser Commit ist enthalten in:
Ursprung
3a6af5ee5f
Commit
6ed4319e58
1 geänderte Dateien mit 8 neuen und 0 gelöschten Zeilen
|
@ -19,6 +19,10 @@ steps:
|
||||||
- mkdir ~/docs && cd ~/docs
|
- mkdir ~/docs && cd ~/docs
|
||||||
- git clone $DRONE_REPO_LINK .
|
- git clone $DRONE_REPO_LINK .
|
||||||
- git checkout $DRONE_COMMIT
|
- git checkout $DRONE_COMMIT
|
||||||
|
when:
|
||||||
|
branch:
|
||||||
|
exclude:
|
||||||
|
- renovate/*
|
||||||
- name: build
|
- name: build
|
||||||
image: registry.access.redhat.com/ubi9/python-311:1-12
|
image: registry.access.redhat.com/ubi9/python-311:1-12
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -29,6 +33,10 @@ steps:
|
||||||
- pip install --upgrade pip
|
- pip install --upgrade pip
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
- mkdocs build
|
- mkdocs build
|
||||||
|
when:
|
||||||
|
branch:
|
||||||
|
exclude:
|
||||||
|
- renovate/*
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: cache
|
- name: cache
|
||||||
|
|
Laden …
In neuem Issue referenzieren