Skip to content

Build and deploy to Azure Web App - budgetbud #52

Build and deploy to Azure Web App - budgetbud

Build and deploy to Azure Web App - budgetbud #52

# 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 to Azure Web App - budgetbud
on:
workflow_dispatch:
jobs:
deploy:
runs-on: windows-latest
environment:
name: 'Production'
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
permissions:
id-token: write #This is required for requesting the JWT
steps:
- uses: actions/checkout@v4
- name: Set up Node.js version
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Build Client
run: |
npm install
npm run build --if-present
npm run test --if-present
- name: Set up .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x'
- name: Build Server
run: |
dotnet build --configuration Release
- name: Dotnet Publish
run: |
dotnet publish --configuration Release --output dist
- name: Login to Azure
uses: azure/login@v2
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_D811F17711F44C24BFFB74BA7909FD66 }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_9F5A4F52AFB14B6DB8B87ACE137C3E90 }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_6CFEAEA74C1044D98BDA21B27C81EAE3 }}
- name: 'Deploy to Azure Web App'
uses: azure/webapps-deploy@v3
id: deploy-to-webapp
with:
app-name: 'budgetbud'
slot-name: 'Production'
package: dist