Skip to content

Update deploy.yml

Update deploy.yml #5

Workflow file for this run

name: Fronted CI/CD
on:
push:
branches:
- main
pull_request:
branches:
- main
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: Install dependencies for frontend
run: |
npm install
- name: Generate build
run: |
npm run build
- name: Deploy to gh pages
env:
CI: true
GH_TOKEN: ${{ secrets.GH_TOKEN_SECRET }}
run: |
npx angular-cli-ghpages --dir=dist/frontend/browser