-
Notifications
You must be signed in to change notification settings - Fork 3
140 lines (116 loc) · 4.2 KB
/
dotnet.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
name: Build Project
env:
DOTNET_NOLOGO: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_ENVIRONMENT: github
ASPNETCORE_ENVIRONMENT: github
BUILD_PATH: "${{github.workspace}}/artifacts"
on:
push:
branches:
- master
- develop
tags:
- "v*"
pull_request:
branches:
- master
- develop
jobs:
build-project:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Setup MSBuild
uses: microsoft/[email protected]
- name: Restore Dependencies
run: dotnet restore ./service/InstructorIQ.sln
- name: Build Solution
run: "dotnet build ./service/InstructorIQ.sln --no-restore --configuration Release"
- name: Publish Web Application
if: success()
run: 'dotnet publish ./service/src/InstructorIQ.WebApplication/InstructorIQ.WebApplication.csproj --no-build --configuration Release --output "${{env.BUILD_PATH}}/WebApplication"'
- name: Build Database
if: success()
run: 'msbuild ./database/InstructorIQ.sln /t:Build /p:Configuration=Release /p:OutputPath="${{env.BUILD_PATH}}/database"'
- name: Upload WebApplication Artifact
if: success()
uses: actions/upload-artifact@v3
with:
name: WebApplication
path: "${{env.BUILD_PATH}}/WebApplication"
- name: Upload Database Artifact
if: success()
uses: actions/upload-artifact@v3
with:
name: Database
path: "${{env.BUILD_PATH}}/Database"
deploy-staging:
runs-on: ubuntu-latest
needs: build-project
if: success() && github.event_name != 'pull_request' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop')
environment:
name: Staging
url: https://staging.instructoriq.com/
steps:
- name: Download Database Artifact
uses: actions/download-artifact@v3
with:
name: Database
- name: Download Web Application Artifact
uses: actions/download-artifact@v3
with:
name: WebApplication
- name: Deploy SQL Server Database to Azure
if: success() && github.event_name != 'pull_request' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop')
uses: azure/[email protected]
with:
connection-string: ${{secrets.AZURE_SQL_CONNECTION_STAGING}}
path: "./InstructorIQ.dacpac"
action: "publish"
- name: Deploy Web Application to Azure
if: success() && github.event_name != 'pull_request' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop')
uses: azure/webapps-deploy@v3
with:
app-name: "web-ls-app-eus-iq-stg-01"
slot-name: "Production"
publish-profile: ${{secrets.PUBLISH_PROFILE_STAGING}}
package: ./
deploy-production:
runs-on: ubuntu-latest
needs: build-project
if: success() && github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/v')
environment:
name: Production
url: https://instructoriq.com/
steps:
- name: Download Database Artifact
uses: actions/download-artifact@v3
with:
name: Database
- name: Download Web Application Artifact
uses: actions/download-artifact@v3
with:
name: WebApplication
- name: Deploy SQL Server Database to Azure
if: success() && github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/v')
uses: azure/[email protected]
with:
connection-string: ${{secrets.AZURE_SQL_CONNECTION_PRODUCTION}}
path: "./InstructorIQ.dacpac"
action: "publish"
- name: Deploy Web Application to Azure
if: success() && github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/v')
uses: azure/webapps-deploy@v3
with:
app-name: "web-ls-app-eus-iq-prd-01"
slot-name: "Production"
publish-profile: ${{secrets.PUBLISH_PROFILE_PRODUCTION}}
package: ./