Fix typo #10
Workflow file for this run
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: Deploy mkdocs | |
on: | |
push: | |
branches: | |
- main | |
- soo-deploy-docs | |
# This is just for testing purposes and needs to be removed | |
# before merge | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
env: | |
PYTHON_VERSION: "3.10" | |
jobs: | |
deploy-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Configure Git Credentials | |
run: | | |
git config user.name github-actions[bot] | |
git config user.email github-actions[bot]@users.noreply.github.com | |
- name: Install Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Install Pixi | |
uses: prefix-dev/[email protected] | |
with: | |
pixi-version: ${{ env.PIXI_version }} | |
cache: true | |
- name: Install repository | |
run: | | |
pixi install | |
- name: Build and deploy docs | |
run: | | |
git remote add gh-token "https://${{secrets.GH_TOKEN}}@github.com/NOAA-HES-Capstone/icedyno.git" | |
git fetch gh-token && git fetch gh-token gh-pages:gh-pages | |
pixi run mkdocs build | |
pixi run mkdocs gh-deploy --force --clean --verbose --remote-name gh-pages | |