File tree Expand file tree Collapse file tree 3 files changed +38
-8
lines changed Expand file tree Collapse file tree 3 files changed +38
-8
lines changed Original file line number Diff line number Diff line change 1
1
name : Deploy Docs
2
2
on :
3
3
push :
4
- tags :
5
- - " v*"
4
+ branches : [ main ]
5
+ paths :
6
+ - docs/**
7
+ workflow_dispatch :
6
8
7
9
jobs :
8
10
build :
24
26
git config --global user.name "Docs Deploy"
25
27
git config --global user.email "support@kitchenowl.org"
26
28
- name : Build Docs Website
27
- run : mike deploy --push --update-aliases ${{ github.ref_name }} latest
29
+ run : mike deploy --push dev
28
30
working-directory : docs
Original file line number Diff line number Diff line change
1
+ name : Release Docs
2
+ on :
3
+ push :
4
+ tags :
5
+ - " v*"
6
+
7
+ jobs :
8
+ build :
9
+ name : Deploy docs
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - name : Checkout main
13
+ uses : actions/checkout@v4
14
+ with :
15
+ fetch-depth : 0
16
+
17
+ - uses : actions/setup-python@v4
18
+ with :
19
+ python-version : 3.12
20
+ - name : Install Dependencies
21
+ run : pip install -r docs/requirements.txt
22
+ - name : Setup Docs Deploy
23
+ run : |
24
+ git config --global user.name "Docs Deploy"
25
+ git config --global user.email "support@kitchenowl.org"
26
+ - name : Build Docs Website
27
+ run : mike deploy --push --update-aliases ${{ github.ref_name }} latest
28
+ working-directory : docs
Original file line number Diff line number Diff line change 1
1
<h1 align =" center " >
2
2
<picture >
3
- <source media="(prefers-color-scheme: dark)" srcset="./docs/img/icon.png">
4
- <img width="128" src="./docs/img/logo.png" alt="KitchenOwl">
3
+ <source media="(prefers-color-scheme: dark)" srcset="./docs/docs/ img/icon.png">
4
+ <img width="128" src="./docs/docs/ img/logo.png" alt="KitchenOwl">
5
5
</picture >
6
6
</h1 >
7
7
<p align =" center " >
38
38
39
39
<div align =" center " >
40
40
<a href =' https://play.google.com/store/apps/details?id=com.tombursch.kitchenowl ' >
41
- <img alt='Get it on Google Play' src='docs/img/badges/playstore.png' height="50" />
41
+ <img alt='Get it on Google Play' src='docs/docs/ img/badges/playstore.png' height="50" />
42
42
</a >
43
43
<a href =' https://f-droid.org/packages/com.tombursch.kitchenowl/ ' >
44
- <img alt='Get it on F-Droid' src='docs/img/badges/f-droid.png' height="50"/>
44
+ <img alt='Get it on F-Droid' src='docs/docs/ img/badges/f-droid.png' height="50"/>
45
45
</a >
46
46
<a href =' https://apps.apple.com/app/kitchenowl/id1557453670 ' >
47
- <img alt='Get it on the AppStore' src='docs/img/badges/appstore.png' height="50" />
47
+ <img alt='Get it on the AppStore' src='docs/docs/ img/badges/appstore.png' height="50" />
48
48
</a >
49
49
</div >
50
50
You can’t perform that action at this time.
0 commit comments