Skip to content

Update main.yaml

Update main.yaml #41

Workflow file for this run

name: Build and Deploy Pages
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Build Angular app to prod
run: npm install && npm run build:prod
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist/browser
branch: gh-pages
token: ${{ secrets.GH_TOKEN }}