Skip to content

update solution to Angular v17 #5

update solution to Angular v17

update solution to Angular v17 #5

Workflow file for this run

name: Build and Deploy to GitHub Pages
on:
push:
branches: [main]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies and build 🔧
run: |
npm ci
npm run build:lib
npm run build:gh-pages
cp ./dist/uiowa-header-demo/browser/index.html ./dist/uiowa-header-demo/browser/404.html
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist/uiowa-header-demo/browser