sthope e0b8ed0d99
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Build / build (push) Failing after 18s
lint / lint (push) Failing after 9s
Docker Compose Test / test (push) Failing after 5s
Initial commit
2024-05-05 21:56:32 +02:00

36 lines
747 B
YAML

name: Build
on:
- push
- pull_request
# schedule:
# - cron: '0 21 * * 0'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs-material==7.1.9
- name: Build and deploy
run: |
mkdocs build
cp -r site/ $GITHUB_WORKSPACE/site
chmod -R 777 $GITHUB_WORKSPACE/site
- name: Upload built site
uses: actions/upload-artifact@v2
with:
name: built-site
path: $GITHUB_WORKSPACE/site