Skip to content

docs: add README.md and configure GitHub Pages deployment workflow #2

docs: add README.md and configure GitHub Pages deployment workflow

docs: add README.md and configure GitHub Pages deployment workflow #2

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: webapp/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: webapp
- name: Build
run: npx ng build --configuration production --base-href /cap-map/
working-directory: webapp
- name: Copy 404.html for SPA routing
run: cp webapp/dist/webapp/browser/index.html webapp/dist/webapp/browser/404.html
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: webapp/dist/webapp/browser
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