We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d134779 commit c8d8033Copy full SHA for c8d8033
.github/workflows/static.yml
@@ -41,16 +41,22 @@ jobs:
41
42
- name: Install build dependencies
43
run: |
44
- mkdir ../gh-pages
45
npm install [email protected] -g
46
npm install @jsdoc/[email protected] -g
47
+ - name: Restore previous github-pages artifact
48
+ run: |
49
+ wget ${{ url }}artifact.zip
50
+ unzip artifact.zip
51
+ mv gh-pages/ ../gh-pages
52
+
53
- name: Build master documentation
54
55
cd ./geonode_mapstore_client/client/
56
npm run docs
57
cd ../../
58
cp -a ./geonode_mapstore_client/static/fonts/. ./docs/fonts/
59
+ rm -rf ../gh-pages/master
60
mv ./docs ../gh-pages/master
61
cd ../
62
zip -r artifact.zip gh-pages/
0 commit comments