Create blank.yml
Dieser Commit ist enthalten in:
Ursprung
b73043a645
Commit
52c6da8a78
1 geänderte Dateien mit 29 neuen und 0 gelöschten Zeilen
29
.github/workflows/blank.yml
gevendort
Normale Datei
29
.github/workflows/blank.yml
gevendort
Normale Datei
|
@ -0,0 +1,29 @@
|
||||||
|
name: gh-deploy
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: MkDocs Github Pages automatic deployment
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout main
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Set up Python 3.9
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: '3.9'
|
||||||
|
|
||||||
|
- name: Install requirements
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
- name: MkDocs gh-deploy
|
||||||
|
run: |
|
||||||
|
git pull
|
||||||
|
mkdocs gh-deploy
|
Laden …
In neuem Issue referenzieren