Skip to content

Adds workflow to deploy prospector-assistant (#69) #4

Adds workflow to deploy prospector-assistant (#69)

Adds workflow to deploy prospector-assistant (#69) #4

Workflow file for this run

# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
# More GitHub Actions for Azure: https://github.com/Azure/actions
name: workbench-app build and deploy
on:
push:
branches:
- main
paths:
- "workbench-app/**"
- ".github/workflows/workbench-app.yml"
pull_request:
branches:
- main
paths:
- "workbench-app/**"
- ".github/workflows/workbench-app.yml"
workflow_dispatch:
jobs:
build-pr:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js version
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm run test --if-present
working-directory: ./workbench-app
env:
NODE_OPTIONS: "--max_old_space_size=8192"
build-main:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
environment:
name: production
steps:
- uses: actions/checkout@v4
- name: Set up Node.js version
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: npm install, build, and test
env:
NODE_OPTIONS: "--max_old_space_size=8192"
VITE_SEMANTIC_WORKBENCH_AUTHORITY: ${{ secrets.VITE_SEMANTIC_WORKBENCH_AUTHORITY }}
VITE_SEMANTIC_WORKBENCH_CLIENT_ID: ${{ secrets.VITE_SEMANTIC_WORKBENCH_CLIENT_ID }}
VITE_SEMANTIC_WORKBENCH_SERVICE_URL: ${{ secrets.VITE_SEMANTIC_WORKBENCH_SERVICE_URL }}
working-directory: ./workbench-app
run: |
npm install
npm run build --if-present
npm run test --if-present
- name: Zip artifact for deployment
if: github.event_name != 'pull_request'
run: zip semantic-workbench-release.zip . -r
working-directory: ./workbench-app/build
- name: Upload artifact for deployment job
if: github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
with:
name: semantic-workbench-node-app
path: ./workbench-app/build/semantic-workbench-release.zip
deploy:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
needs: build-main
environment:
name: production
permissions:
id-token: write #This is required for requesting the JWT
steps:
- name: Download artifact from build job
uses: actions/download-artifact@v4
with:
name: semantic-workbench-node-app
- name: Unzip artifact for deployment
run: unzip semantic-workbench-release.zip
- name: Login to Azure
uses: azure/login@v2
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
- name: "Deploy to Azure Web App"
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: ${{ secrets.AZURE_WORKBENCH_APP_SERVICE_NAME }}
slot-name: "Production"
package: .