Skip to content

fix typos

fix typos #25

Workflow file for this run

name: Deploy documentation ⚙️
on:
push:
branches:
- main
paths:
- 'workshop/content/**'
defaults:
run:
working-directory: workshop/content
jobs:
build:
name: Build and Deploy Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install requirements 📦
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
- name: Deploy 📦
#run: mkdocs gh-deploy --strict --force --message 'update website via GitHub Actions'
run: mkdocs gh-deploy --force --message 'update website via GitHub Actions'