This repository has been archived by the owner on Nov 7, 2024. It is now read-only.
Merge pull request #102 from JulioPDX/doc-fix #156
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Deploy AVD Workshop site | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build_and_deploy_job: | |
runs-on: ubuntu-latest | |
name: Build and Deploy Job | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
##### Install required Python Modules and build the website ##### | |
- run: pip install -r requirements.txt | |
- run: pip install git+https://${{ secrets.MKDOCS_INSIDER_TOKEN }}@github.com/squidfunk/[email protected] | |
- run: mkdocs gh-deploy --force |