Skip to content

Commit

Permalink
use node.js in pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
erinnmclaughlin authored May 18, 2024
1 parent 92dda36 commit 46bd5f4
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions .github/workflows/main_headlessblazor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# 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 ASP.Net Core app to Azure Web App - headlessblazor
name: Build and Deploy

on:
push:
Expand All @@ -22,6 +22,9 @@ jobs:
dotnet-version: '8.x'
include-prerelease: true

- name: Set up Node.js
uses: actions/[email protected]

- name: Build with dotnet
run: dotnet build --configuration Release

Expand All @@ -40,21 +43,21 @@ jobs:
environment:
name: 'Production'
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
permissions:
id-token: write #This is required for requesting the JWT
permissions:
id-token: write #This is required for requesting the JWT

steps:
- name: Download artifact from build job
uses: actions/download-artifact@v3
with:
name: .net-app

- name: Login to Azure
uses: azure/login@v1
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_6EBCF58C2C2E4F7DAE3835924574EAE1 }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_C2F0D35E84FC4DEF9FB9D9A402F97D52 }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_07A7207A5D2E457CA4971FEF7169B43F }}

- name: Login to Azure
uses: azure/login@v1
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_6EBCF58C2C2E4F7DAE3835924574EAE1 }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_C2F0D35E84FC4DEF9FB9D9A402F97D52 }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_07A7207A5D2E457CA4971FEF7169B43F }}

- name: Deploy to Azure Web App
id: deploy-to-webapp
Expand All @@ -63,4 +66,4 @@ jobs:
app-name: 'headlessblazor'
slot-name: 'Production'
package: .


0 comments on commit 46bd5f4

Please sign in to comment.