Skip to content

Create lab-ideas-geospatial.md #76

Create lab-ideas-geospatial.md

Create lab-ideas-geospatial.md #76

Workflow file for this run

name: Deploy Markdown as Website
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Create symlink for README.md
run: |
ln -s ../README.md docs/index.md
- name: Install mkdocs dependencies
run: |
pip install mkdocs mkdocs-material mkdocs-awesome-pages-plugin
- name: Deploy to GitHub Pages
env:
GH_PAT: ${{ secrets.GH_PAT }}
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git remote set-url origin https://x-access-token:${{ secrets.GH_PAT }}@github.com/${{ github.repository }}.git
mkdocs gh-deploy --config-file site/mkdocs.yml --force