Make workbench service url configurable (#67) #8
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
# 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 | |
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" | |
VITE_SEMANTIC_WORKBENCH_AUTHORITY: ${{ secrets.VITE_SEMANTIC_WORKBENCH_AUTHORITY }} | |
VITE_SEMANTIC_WORKBENCH_CLIENT_ID: ${{ secrets.VITE_SEMANTIC_WORKBENCH_CLIENT_ID }} | |
- 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: . |