Send game_info message if social add/remove changes game visibility (… #143
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
# Build the documentation and push to github pages | |
name: Doc | |
on: | |
push: | |
branches: develop | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies with pipenv | |
run: | | |
pip install pipenv==2023.4.20 | |
pipenv sync | |
pipenv run pip install pdoc3 | |
- name: Build | |
run: pipenv run doc | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./html/server |