| 123456789101112131415161718192021222324252627282930 |
- name: Report Viewer Deployment Workflow
- on:
- workflow_dispatch: # Use this to dispatch from the Actions Tab
- push:
- branches:
- - main
-
- jobs:
- build-and-deploy:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout 🛎️
- uses: actions/checkout@v3
-
- - uses: actions/setup-node@v3
- with:
- node-version: "16"
-
- - name: Install and Build 🔧
- working-directory: report-viewer
- run: |
- npm install
- npm run build
- - name: Deploy 🚀
- uses: JamesIves/github-pages-deploy-action@v4.4.0
- with:
- branch: gh-pages
- folder: report-viewer/dist
|