-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
92dda36
commit 46bd5f4
Showing
1 changed file
with
14 additions
and
11 deletions.
There are no files selected for viewing
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
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: | ||
|
@@ -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 | ||
|
||
|
@@ -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 | ||
|
@@ -63,4 +66,4 @@ jobs: | |
app-name: 'headlessblazor' | ||
slot-name: 'Production' | ||
package: . | ||
|
||
|