Add deploy action
All checks were successful
Build and Deploy MkDocs / build-next (push) Successful in 42s
All checks were successful
Build and Deploy MkDocs / build-next (push) Successful in 42s
This commit is contained in:
parent
bb3dfc8d9f
commit
f07095a49b
@ -8,23 +8,28 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
build-next:
|
build-next:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
container:
|
|
||||||
image: squidfunk/mkdocs-material
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Set up container
|
- name: Set up container
|
||||||
run: |
|
run: |
|
||||||
apk add --no-cache rsync openssh-client
|
apt update
|
||||||
|
apt install -y rsync
|
||||||
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: '3.x'
|
||||||
|
|
||||||
- name: Install MkDocs/Mike
|
- name: Install MkDocs/Mike
|
||||||
run: |
|
run: |
|
||||||
pip install mike
|
pip install --upgrade pip
|
||||||
|
|
||||||
|
pip install mkdocs mkdocs-material pymdown-extensions mkdocs-material-extensions mike
|
||||||
|
|
||||||
- name: Setup SSH keys
|
- name: Setup SSH keys
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user