-
-
Notifications
You must be signed in to change notification settings - Fork 145
68 lines (57 loc) · 1.74 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
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 docs
run: make js-doc
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/js/assets/1.0.0/
- name: Deploy to GitHub Pages
if: github.repository == '3liz/lizmap-web-client' && github.ref == 'refs/heads/master'
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 "[email protected]"
# ./node_modules/.bin/gh-pages-multi deploy -s docs/js/assets/1.0.0/ -t $BRANCH_NAME -v
- name: Summary
if: github.repository == '3liz/lizmap-web-client' && github.ref == 'refs/heads/master'
run: echo "### Published ! :rocket:" >> $GITHUB_STEP_SUMMARY