-
Notifications
You must be signed in to change notification settings - Fork 5
70 lines (56 loc) · 1.96 KB
/
production_firststepdowhile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Build, test, and deploy ASP.Net Core app to Azure Web App - firststepdowhile
on:
push:
branches:
- production
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x'
- name: Build with dotnet
run: dotnet build FirstStep/Firststep.csproj --configuration Release
- name: Publish with dotnet
run: dotnet publish FirstStep/Firststep.csproj --configuration Release --output ./published
- name: Restore test projects
run: dotnet restore FirstStepTest/FirstStepTest.csproj
- name: Build test projects
run: dotnet build FirstStepTest/FirstStepTest.csproj --configuration Release
- name: Run tests
run: dotnet test FirstStepTest/FirstStepTest.csproj --logger trx --results-directory ./TestResults
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results
path: ./TestResults
- name: Upload artifact for deployment job
uses: actions/upload-artifact@v4
with:
name: .net-app
path: ./published
deploy:
runs-on: windows-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: .net-app
path: ./published
- name: Deploy to Azure Web App
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: 'firststepdowhile'
slot-name: 'Production'
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_D30400F869564A889270825B210BE0D7 }}
package: ./published