Skip to content

remove FormFieldOption since label was not used (only value) #33

remove FormFieldOption since label was not used (only value)

remove FormFieldOption since label was not used (only value) #33

Workflow file for this run

name: Build and Deploy Angular App
on:
push:
branches:
- master
workflow_dispatch: {}
jobs:
build-and-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: false
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build Angular app
run: npx ng build --configuration production --output-path docs --base-href /gdx-quilly-utils/
- name: Copy index.html to 404.html
run: cp docs/browser/index.html docs/browser/404.html
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs/browser/