debug+ #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
- name: Build Angular app | |
working-directory: ./fmd-telemetry | |
run: ng build | |
- name: List output directory | |
run: ls -l fmd-telemetry/dist/ | |
# Setup Pages | |
- name: Setup Pages | |
uses: actions/configure-pages@v4 | |
# 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 | |