fix(deps): update dependency geoportal-access-lib to v3.4.2 (#33) #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publication du site ... | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
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 | |
- 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 | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
repository: IGNF/geoportal-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 | |