1
0
mirror of https://github.com/spacebarchat/docs.git synced 2024-11-25 11:42:58 +01:00

Create build.yml

This commit is contained in:
Stylix58 2021-05-14 11:26:31 +02:00 committed by GitHub
parent c19a7923d0
commit e61e69d998
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

16
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,16 @@
name: Build to GitHub Pages
on:
push:
branches:
- master
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force