Dependency(deps): Bump vue from 3.4.38 to 3.5.8 in /report-viewer (#2… #721
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: Report Viewer Deployment Workflow (Dev) | |
on: | |
workflow_dispatch: # Use this to dispatch from the Actions Tab | |
push: | |
branches: | |
- develop | |
paths: | |
- ".github/workflows/report-viewer-dev.yml" | |
- "report-viewer/**" | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
- name: Install and Build 🔧 | |
working-directory: report-viewer | |
run: | | |
npm install | |
npm run build-dev | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4.6.4 | |
with: | |
branch: gh-pages | |
folder: report-viewer/dist | |
repository-name: JPlag/JPlag-Dev | |
token: ${{ secrets.SDQ_DEV_DEPLOY_TOKEN }} | |
clean: true | |
single-commit: true |