-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (54 loc) · 1.73 KB
/
Copy pathdeploy-emprestimos-api.yml
File metadata and controls
63 lines (54 loc) · 1.73 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
name: Build and deploy Emprestimos.API to Azure Web App
on:
push:
branches:
- main
paths:
- 'src/backend/Emprestimos.API/**'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-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: Build
run: dotnet build src/backend/Emprestimos.API/Emprestimos.API.csproj --configuration Release
- name: Publish
run: dotnet publish src/backend/Emprestimos.API/Emprestimos.API.csproj -c Release -o ${{env.DOTNET_ROOT}}/myapp
- name: Zip artifact
run: cd ${{env.DOTNET_ROOT}} && zip -r myapp.zip myapp
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: emprestimos-app
path: ${{env.DOTNET_ROOT}}/myapp.zip
deploy:
runs-on: ubuntu-latest
needs: build
permissions:
id-token: write
contents: read
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: emprestimos-app
path: ./artifact
- name: Login to Azure
uses: azure/login@v2
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_53A764BA120245DAA629D6794EAF9C22 }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_39CBE0C302F2432EABACBFABADBBD12F }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_436374D41D6C44689EDBFDE45E3572D7 }}
- name: Deploy to Azure Web App
uses: azure/webapps-deploy@v3
with:
app-name: 'Emprestimos'
slot-name: 'Production'
package: ./artifact/myapp.zip