-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (64 loc) · 2.01 KB
/
build_test_and_release.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
name: Build, Test and Deploy
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
release:
types: [ created ]
workflow_dispatch:
env:
DOTNET_VERSION: '8.0.x'
AZURE_FUNCTIONAPP_NAME: 'LuasAPIFunction'
AZURE_FUNCTIONAPP_PACKAGE_PATH: './LuasAPI.AzureFunction'
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
3.1.x
5.0.x
6.0.x
8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
build-and-deploy:
runs-on: windows-latest
needs: build-and-test
permissions:
id-token: write # This is required for requesting the JWT
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@v4
- name: Setup DotNet ${{ env.DOTNET_VERSION }} Environment
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: 'Resolve Project Dependencies Using Dotnet'
shell: pwsh
run: |
pushd './${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}'
dotnet build --configuration Release --output ./output
popd
- name: Login to Azure
uses: azure/login@v2
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_145AC1BCFD3F4AF3BCDBBFD23D1FC58C }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_342581E108E64446985A202EEC1A224F }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_F51A0FC4A0D44919A2D7585FE6451931 }}
- name: 'Run Azure Functions Action'
uses: Azure/functions-action@v1
id: fa
with:
app-name: 'LuasAPIFunction'
slot-name: 'Production'
package: '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}/output'