Spaces:
Paused
Paused
Upload bilingual_book_maker/.github/workflows/docs.yaml with huggingface_hub
Browse files
bilingual_book_maker/.github/workflows/docs.yaml
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: Publish docs
|
| 2 |
+
on:
|
| 3 |
+
push:
|
| 4 |
+
branches:
|
| 5 |
+
- main
|
| 6 |
+
|
| 7 |
+
jobs:
|
| 8 |
+
deploy:
|
| 9 |
+
runs-on: ubuntu-latest
|
| 10 |
+
steps:
|
| 11 |
+
- uses: actions/checkout@v2
|
| 12 |
+
- uses: actions/setup-python@v2
|
| 13 |
+
with:
|
| 14 |
+
python-version: '3.9'
|
| 15 |
+
- run: pip install mkdocs mkdocs-material
|
| 16 |
+
- run: mkdocs gh-deploy --force
|