-
Notifications
You must be signed in to change notification settings - Fork 0
86 lines (70 loc) · 2.52 KB
/
main_eventz-api.yml
File metadata and controls
86 lines (70 loc) · 2.52 KB
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
name: Build and deploy ASP.Net Core app to Azure Web App - eventz-api
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x'
- name: Restore
working-directory: eventz-api
run: dotnet restore
- name: Build with dotnet
working-directory: eventz-api
run: dotnet build --configuration Release --no-restore
- name: dotnet publish
working-directory: eventz-api
run: dotnet publish -c Release -o "${{ env.DOTNET_ROOT }}/myapp" --no-build
- name: Upload artifact for deployment job
uses: actions/upload-artifact@v4
with:
name: .net-app
path: ${{ env.DOTNET_ROOT }}/myapp
deploy:
runs-on: windows-latest
needs: build
permissions:
id-token: write
contents: read
steps:
# Checkout source code for EF migrations
- uses: actions/checkout@v4
- name: Set up .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x'
- name: Download artifact from build job
uses: actions/download-artifact@v4
with:
name: .net-app
path: ./publish
- name: Login to Azure
uses: azure/login@v2
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_6DACC4E5B56447598D236C89AC8844E8 }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_FB8777C29A90445191BBFE92862C3FD9 }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_5816123D7C1C4A18B4343C212C51FC7A }}
- name: Install EF Core CLI
run: |
dotnet tool uninstall --global dotnet-ef || echo "No existing version"
dotnet tool install --global dotnet-ef --version 8.*
- name: Run database migrations
env:
CONNECTION_STRING: ${{ secrets.AZURE_SQL_CONNECTION_STRING }}
run: |
dotnet ef database update --project eventz-api/Eventz.Infrastructure/Eventz.Infrastructure.csproj --startup-project eventz-api/Eventz.Api/Eventz.Api.csproj --connection "$env:CONNECTION_STRING"
- name: Deploy to Azure Web App
uses: azure/webapps-deploy@v3
with:
app-name: 'eventz-api'
slot-name: 'Production'
package: ./publish