Add documentation for Arduino (#2104) #99
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: publish-docs-dev | |
on: | |
push: | |
branches: | |
- docs/main | |
# workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
#set excplicitly to 0 to get full history (see https://github.com/actions/checkout#usage) | |
fetch-depth: '0' | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- run: git fetch origin gh-pages --depth=1 | |
- run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
- run: pip install -r requirements.txt | |
- run: | | |
mike deploy --push dev | |
mike list |