-
-
Notifications
You must be signed in to change notification settings - Fork 143
113 lines (92 loc) · 2.62 KB
/
docs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: 📖 Documentation
on:
push:
# tags:
# - '*'
branches:
- master
pull_request:
branches:
- master
- release_3_*
workflow_dispatch:
permissions:
id-token: write
pages: write
jobs:
jsdoc:
name: "🟨 JS-Doc"
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Building JS docs
run: make js-doc
- uses: actions/upload-artifact@master
with:
name: js
path: docs/js/assets/1.0.0/
phpdoc:
name: "🐘 PHP-Doc"
if: github.repository == '3liz/lizmap-web-client' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Building PHP docs
run: make php-doc
- uses: actions/upload-artifact@master
with:
name: php
path: docs/php
deploy:
needs: [ jsdoc, phpdoc ]
name: "📤 Deploy"
if: github.repository == '3liz/lizmap-web-client' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- uses: actions/download-artifact@master
with:
name: php
path: docs/php/
- uses: actions/download-artifact@master
with:
name: js
path: docs/js/
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
# - name: Branch name
# id: branch-name
# run: make debug | grep SHORT_VERSION= >> "$GITHUB_OUTPUT"
#
# - name: Install multi deploy version
# run: npm i @koumoul/gh-pages-multi
#
# - name: Token
# env:
# GITHUB_TOKEN: ${{ secrets.TOKEN_TEST }}
# run: git remote set-url origin https://${{ secrets.TOKEN_TEST }}@github.com/Gustry/lizmap-web-client.git
#
# - name: Deploy build
# env:
# BRANCH_NAME: ${{ steps.branch-name.outputs.SHORT_VERSION }}
# run: |
# git config --global user.name "Bot"
# git config --global user.email "no@mail.org"
# ./node_modules/.bin/gh-pages-multi deploy -s docs/js/assets/1.0.0/ -t $BRANCH_NAME -v
- name: Summary
run: |
echo "
### Published ! :rocket:
[Visit the doc](https://docs.3liz.org/lizmap-web-client/)
" >> $GITHUB_STEP_SUMMARY