fix toponymes glyph url #4
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: Deploy lonlat | |
on: | |
push: | |
branches: [main] | |
permissions: | |
pages: write | |
id-token: write | |
concurrency: | |
group: pages | |
cancel-in-progress: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- name: Setup Pages | |
id: pages | |
uses: actions/configure-pages@v5 | |
- name: "Install JS dependencies" | |
run: "pnpm i --frozen-lockfile" | |
- name: Build pentatrion-geo and front | |
env: | |
VITE_MAPTILER_TOKEN: ${{ secrets.VITE_MAPTILER_TOKEN }} | |
VITE_GOOGLE_MAPS_API_TOKEN: ${{ secrets.VITE_GOOGLE_MAPS_API_TOKEN }} | |
VITE_OPENROUTESERVICE_TOKEN: ${{ secrets.VITE_OPENROUTESERVICE_TOKEN }} | |
run: pnpm run build | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: apps/front/dist | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Deploy to GitHub pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |