Document environment variable GRIST_OIDC_IDP_END_SESSION_ENDPOINT
(…
#149
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 Live | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
publish-live: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11.x' | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Fetch origin/gh-pages | |
run: git fetch origin gh-pages | |
- name: Publish live | |
run: mkdocs gh-deploy |