Skip to content

upgrade ol v10.3.1 (#447) #174

upgrade ol v10.3.1 (#447)

upgrade ol v10.3.1 (#447) #174

Workflow file for this run

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
run: IAM_CLIENT_ID=${{ secrets.IAM_CLIENT_ID }} IAM_CLIENT_SECRET=${{ secrets.IAM_CLIENT_SECRET }} npm run build-only -- --mode=demo
- name: Upload Binary artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4
with:
repository: IGNF/cartes.gouv.fr-entree-carto
ref: gh-pages
- name: Download Binary artifacts
uses: actions/download-artifact@v4
with:
name: dist
path: .
- 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