Skip to content

More updates

More updates #29

Workflow file for this run

name: Deploy Angular to Pages
on:
push:
branches: ["master"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# Setup Node.js
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
# Change to Angular project directory
- name: Change directory
run: cd fmd-telemetry
# Install dependencies
- name: Install Dependencies
run: npm install
working-directory: ./fmd-telemetry
# Install Angular CLI
- name: Install Angular CLI
run: npm install -g @angular/cli
working-directory: ./fmd-telemetry
# Build the Angular project
- name: Build Angular app
working-directory: ./fmd-telemetry
run: ng build
# Setup Pages
- name: Setup Pages
uses: actions/configure-pages@v4
# Change to Angular project directory
- name: Change directory
run: cd ..
# Upload artifact
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './dist/fmd-telemetry'
# Deploy to GitHub Pages
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4