-
Notifications
You must be signed in to change notification settings - Fork 48
48 lines (40 loc) · 1.25 KB
/
deploy-function.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
name: Deploy Azure function to Azure Function App
on:
workflow_dispatch:
branches: [ main ]
# CONFIGURATION
# For help, go to https://github.com/Azure/Actions
#
# 1. Set up the following secrets in your repository:
# AZURE_FUNCTION_PUBLISH_PROFILE
#
# 2. Change these variables for your configuration:
env:
AZURE_FUNCTIONAPP_NAME: pwnedpasswords-dev
AZURE_FUNCTIONAPP_PACKAGE_PATH: '.'
jobs:
build-and-deploy:
runs-on: windows-latest
environment: dev
steps:
- uses: actions/checkout@v2
- name: Setup .NET 7.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.x
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.x
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
- name: Build Function
run: dotnet build ./Functions/HaveIBeenPwned.PwnedPasswords.csproj --configuration Release --output ./output
- name: Deploy Function to Azure
uses: Azure/functions-action@v1.3.1
with:
app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }}
package: '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}/output'
publish-profile: ${{ secrets.AZURE_FUNCTION_PUBLISH_PROFILE }}