-
Notifications
You must be signed in to change notification settings - Fork 1
87 lines (71 loc) · 1.94 KB
/
build.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
name: Publication du site ...
on:
push:
branches:
- main
jobs:
# - checkout master ou main
# - build des binaires
# - build package des sources
# - build jsdoc
build:
if: ${{ !contains(github.event.head_commit.message, '[github-actions]') }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use nodejs
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies
run: npm install
- name: Build bundle
run: npm run build:bundle
- name: Build modules
run: npm run build:modules
- name: Build package
run: npm run publish
- name: Upload Binary artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
- name: Upload JSDoc artifacts
uses: actions/upload-artifact@v4
with:
name: jsdoc
path: jsdoc
# - checkout gh-pages
# - download des artifacts : build & jsdoc
# - commit & push
deploy:
if: ${{ !contains(github.event.head_commit.message, '[github-actions]') }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4
with:
repository: IGNF/geopf-extensions-openlayers
ref: gh-pages
- name: Download Binary artifacts
uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: Download JSDoc artifacts
uses: actions/download-artifact@v4
with:
name: jsdoc
path: jsdoc
- name: Build 404
run: |
cp index.html 404.html
- name: Publish
run: |
git config user.name github-actions
git config user.email [email protected]
git add -A
git commit -m "build project gh-pages"
git push