Skip to content

Commit 2da5a87

Browse files
committed
Added doc action
1 parent e29fa23 commit 2da5a87

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Documentation
2+
3+
on:
4+
push:
5+
tags:
6+
- "*"
7+
branches: [ main, master ]
8+
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Set up Python
15+
uses: actions/setup-python@v2
16+
with:
17+
python-version: '3.9'
18+
- name: Install dependencies
19+
run: |
20+
python -m pip install --upgrade pip
21+
pip install setuptools wheel
22+
pip install -r requirements-dev.txt
23+
- name: Deploy to GitHub Pages
24+
run: |
25+
mkdocs gh-deploy

.github/workflows/publish.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ on:
66

77
jobs:
88
deploy:
9-
109
runs-on: ubuntu-latest
11-
1210
steps:
1311
- uses: actions/checkout@v2
1412
- name: Set up Python

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ on:
99
jobs:
1010
build-windows:
1111
runs-on: windows-latest
12-
1312
steps:
1413
- uses: actions/checkout@v2
1514
- name: Set up Python 3.9
@@ -27,7 +26,6 @@ jobs:
2726
2827
build-linux:
2928
runs-on: ubuntu-latest
30-
3129
steps:
3230
- uses: actions/checkout@v2
3331
- name: Set up Python 3.9

0 commit comments

Comments
 (0)