File tree Expand file tree Collapse file tree 2 files changed +32
-2
lines changed Expand file tree Collapse file tree 2 files changed +32
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Deploy MkDocs to GitHub Pages
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - mkdocs
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.11'
20
+
21
+ - name : Install dependencies
22
+ run : |
23
+ python -m pip install --upgrade pip
24
+ pip install mkdocs-material
25
+
26
+ - name : Deploy to GitHub Pages
27
+ run : mkdocs gh-deploy --force
28
+ env :
29
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1
1
site_name : PyCon KR CoC
2
+ site_url : https://pythonkr.github.io/pycon-code-of-conduct
3
+ repo_url : https://github.com/pythonkr/pycon-code-of-conduct
4
+
2
5
theme :
3
6
name : material
4
7
logo : logo.png
29
32
nav :
30
33
# - Home: index.md
31
34
- Code of Conduct (English) :
32
-
33
35
- Intent and Purpose : en/coc/a_intent_and_purpose.md
34
36
- Community : en/coc/b_community.md
35
37
- Communication : en/coc/c_communication.md
38
40
- Public Decorum : en/coc/f_public_decorum.md
39
41
- Reporting : en/coc/g_reporting.md
40
42
- Contributing : en/coc/h_contributing.md
41
-
42
43
- Code of Conduct (Korean) :
43
44
- 의도와 목적 : ko/coc/a_intent_and_purpose.md
44
45
- 커뮤니티 : ko/coc/b_community.md
You can’t perform that action at this time.
0 commit comments