Skip to content

Commit 1ccc745

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents b298d9d + 93ec8f3 commit 1ccc745

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
2+
# More GitHub Actions for Azure: https://github.com/Azure/actions
3+
4+
name: Build and deploy ASP.Net Core app to Azure Web App - questlog-backend
5+
6+
on:
7+
push:
8+
branches:
9+
- master
10+
workflow_dispatch:
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
permissions:
16+
contents: read #This is required for actions/checkout
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
21+
- name: Set up .NET Core
22+
uses: actions/setup-dotnet@v4
23+
with:
24+
dotnet-version: '10.x'
25+
26+
- name: Build with dotnet
27+
run: dotnet build --configuration Release
28+
29+
- name: dotnet publish
30+
run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp
31+
32+
- name: Upload artifact for deployment job
33+
uses: actions/upload-artifact@v4
34+
with:
35+
name: .net-app
36+
path: ${{env.DOTNET_ROOT}}/myapp
37+
38+
deploy:
39+
runs-on: ubuntu-latest
40+
needs: build
41+
permissions:
42+
id-token: write #This is required for requesting the JWT
43+
contents: read #This is required for actions/checkout
44+
45+
steps:
46+
- name: Download artifact from build job
47+
uses: actions/download-artifact@v4
48+
with:
49+
name: .net-app
50+
51+
- name: Login to Azure
52+
uses: azure/login@v2
53+
with:
54+
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_C976E6A8F815408C821B444ADFDBBEE9 }}
55+
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_63316967346F404EAB7C3F0C3931CD2C }}
56+
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_7557384EADE44243A9F376B94233CA83 }}
57+
58+
- name: Deploy to Azure Web App
59+
id: deploy-to-webapp
60+
uses: azure/webapps-deploy@v3
61+
with:
62+
app-name: 'questlog-backend'
63+
slot-name: 'Production'
64+
package: .
65+

0 commit comments

Comments
 (0)