Skip to content

Deploy Demo

Deploy Demo #3

Workflow file for this run

# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Demo
on:
# Runs on pushes targeting the default branch
release:
types: [ published ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# Build job
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20.11
cache: npm
- name: Install Angular
run: |
echo "$(ls -la)"
npm install -g @angular/[email protected]
ng v
- name: Install npm dependencies
run: npm install --include=dev
- name: Build preview library
run: |
npm run build:lib
- name: Build application
run: |
npm run build:demo
echo "$(ls -la dist/)"
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: github-pages
path: './dist/angular-ngx-treeview'
retention-days: 1
# Deploy job
deploy:
# Add a dependency to the build job
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4 # or specific "vX.X.X" version tag for this action