Skip to content

Commit 3a503c4

Browse files
committed
workshop 1.0
0 parents  commit 3a503c4

72 files changed

Lines changed: 2072 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Deploy MkDocs to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v3
15+
16+
- name: Set up Python
17+
uses: actions/setup-python@v4
18+
with:
19+
python-version: '3.9'
20+
21+
- name: Install mkdocs-material
22+
run: pip install mkdocs-material
23+
24+
- name: Install pymdown-extensions
25+
run: pip install pymdown-extensions
26+
27+
- name: Install Pygments
28+
run: pip install Pygments
29+
30+
- name: Deploy to GitHub Pages
31+
run: mkdocs gh-deploy --force

0 commit comments

Comments
 (0)