Skip to content

UI: remove information line from interface #432

UI: remove information line from interface

UI: remove information line from interface #432

# 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: Build and deploy Node.js app to Azure Web App - gptdemomvp
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
CI: true
CLOUD_INSTANCE: ${{ vars.CLOUD_INSTANCE }}
TENANT_ID: ${{ secrets.TENANT_ID }}
CLIENT_ID: ${{ secrets.CLIENT_ID }}
REDIRECT_URI: ${{ vars.REDIRECT_URI }}
POST_LOGOUT_REDIRECT_URI: ${{ vars.POST_LOGOUT_REDIRECT_URI }}
SCOPES: ${{ secrets.SCOPES }}
GRAPH_API_ENDPOINT: ${{ vars.GRAPH_API_ENDPOINT }}
EXPRESS_SESSION_SECRET: ${{ secrets.EXPRESS_SESSION_SECRET }}
steps:
- uses: actions/checkout@v4
- name: Set up Node.js version
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: npm install, build, and test
run: |
npm install
npm run build
# npm run build --if-present
# npm run test --if-present
- name: Archive build artifacts
run: zip release.zip ./* -r
- name: Upload artifact for deployment job
uses: actions/upload-artifact@v4
with:
name: node-app
path: release.zip
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: 'Production'
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
steps:
- name: Download artifact from build job
uses: actions/download-artifact@v4
with:
name: node-app
- name: Extract build artifacts
run: unzip release.zip
- name: Remove the archive file
run: rm release.zip
- name: 'Deploy to Azure Web App'
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: 'gptdemomvp'
slot-name: 'Production'
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_57B881AC264A443E873FD5B027994B9B }}
package: .