1
0
Fork 0

Commits vergleichen

...

16 Commits

Autor SHA1 Nachricht Datum
0443c06f36
„.drone.yml“ ändern
Alle Prüfungen waren erfolgreich
continuous-integration/drone/push Build is passing
continuous-integration/drone/promote/production Build is passing
2023-07-02 18:59:46 +02:00
212eae970e
„.drone.yml“ ändern
Alle Prüfungen waren erfolgreich
continuous-integration/drone/push Build is passing
continuous-integration/drone/promote/production Build is passing
2023-07-02 18:53:45 +02:00
a40b4b9d80
„.drone.yml“ ändern
Alle Prüfungen waren erfolgreich
continuous-integration/drone/push Build is passing
continuous-integration/drone/promote/production Build is passing
2023-07-02 18:41:13 +02:00
d81f87b152
„.drone.yml“ ändern
Einige Prüfungen sind fehlgeschlagen
continuous-integration/drone/push Build is passing
continuous-integration/drone/promote/production Build is failing
2023-07-02 18:32:15 +02:00
c80865ad1a
„.drone.yml“ ändern
Alle Prüfungen waren erfolgreich
continuous-integration/drone/push Build is passing
2023-07-02 12:23:04 +02:00
fe2243553a
„.drone.yml“ ändern
Einige Prüfungen sind fehlgeschlagen
continuous-integration/drone/push Build is failing
2023-07-02 12:08:49 +02:00
faef516108
„.drone.yml“ ändern
Einige Checks meldeten Fehler
continuous-integration/drone/push Build encountered an error
2023-07-02 12:07:53 +02:00
0f6b938de6
„.drone.yml“ ändern
Einige Checks meldeten Fehler
continuous-integration/drone/push Build encountered an error
2023-06-27 09:25:56 +02:00
29ad6bc40b
„.drone.yml“ ändern
Alle Prüfungen waren erfolgreich
continuous-integration/drone/push Build is passing
2023-06-27 09:22:23 +02:00
7ed30ca908
Merge pull request 'Update main' (#1) from nick-slowinski.de/docs:main into main
Alle Prüfungen waren erfolgreich
continuous-integration/drone/push Build is passing
Reviewed-on: https://git.nick-slowinski.de/NickSlowinski/docs/pulls/1
2023-06-27 09:19:18 +02:00
ea971a432a
fixes #26
Einige Prüfungen sind fehlgeschlagen
continuous-integration/drone/pr Build is failing
2023-06-26 20:21:53 +02:00
6822f998aa
trying diff file so renovate won't do dumb stuff 2023-06-26 19:57:16 +02:00
6ed4319e58
disable builds when renovate pushes changes 2023-06-26 19:05:22 +02:00
3a6af5ee5f
fix dependency conflicts 2023-06-26 16:24:59 +02:00
78fe49bb84
hopefully fix build error 2023-06-26 16:21:18 +02:00
bbc9548a93
add drone config 2023-06-26 16:14:23 +02:00
2 geänderte Dateien mit 104 neuen und 29 gelöschten Zeilen

103
.drone.yml Normale Datei
Datei anzeigen

@ -0,0 +1,103 @@
name: test
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
volumes:
- name: cache
path: /opt/app-root/src
commands:
- mkdir ~/docs && cd ~/docs
- git clone $DRONE_REPO_LINK .
- git checkout $DRONE_COMMIT
when:
branch:
exclude:
- renovate/*
- 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
when:
branch:
exclude:
- renovate/*
trigger:
event:
- push
- pull_request
volumes:
- name: cache
temp: {}
---
name: deploy to production
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
volumes:
- name: cache
path: /opt/app-root/src
commands:
- mkdir ~/docs && cd ~/docs
- git clone $DRONE_REPO_LINK .
- git checkout $DRONE_COMMIT
- 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
- name: deploy to production
image: appleboy/drone-scp
volumes:
- name: cache
path: /opt/app-root/src
settings:
host: helene.nick-slowinski.de
username: drone_nick-slowinski_de-docs
key:
from_secret: ssh_private_key-drone_nick-slowinski_de-docs
target: /var/www/nick-slowinski.de/docs/production
source: /opt/app-root/src/docs/site
rm: true
overwrite: true
strip_components: 5
trigger:
event:
- promote
target:
- production
volumes:
- name: cache
temp: {}

Datei anzeigen

@ -1,30 +1,2 @@
Babel==2.12.1
certifi==2023.5.7
charset-normalizer==3.1.0
click==8.1.3
colorama==0.4.6
ghp-import==2.1.0
gitdb==4.0.10
GitPython==3.1.31
idna==3.4
Jinja2==3.1.2
Markdown==3.4.3
MarkupSafe==2.1.3
mergedeep==1.3.4
mkdocs==1.4.3
mkdocs-git-revision-date-localized-plugin==1.2.0
mkdocs-material==9.1.17
mkdocs-material-extensions==1.1.1
packaging==23.1
Pygments==2.15.1
pymdown-extensions==10.0.1
python-dateutil==2.8.2
pytz==2023.3
PyYAML==6.0
pyyaml_env_tag==0.1
regex==2023.6.3
requests==2.31.0
six==1.16.0
smmap==5.0.0
urllib3==2.0.3
watchdog==3.0.0
mkdocs-material==9.1.17