Update process_results_table.py #29
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
# Publish the github io website | |
name: Publish site | |
on: | |
release: | |
types: [published] | |
push: | |
branches: | |
- main | |
- docs | |
jobs: | |
publish: | |
name: Publish the site | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository normally | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Init docs | |
run: bash run.sh | |
- name: Run Mkdocs deploy | |
run: mkdocs gh-deploy --force |