We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 575f687 + 381f96f commit 0ec6d04Copy full SHA for 0ec6d04
.github/workflows/CD-azure-functions.yml
@@ -7,6 +7,10 @@ on:
7
branches:
8
- master
9
10
+env:
11
+ AZURE_FUNCTIONAPP_NAME: AutomaticClockOuts # set this to your application's name
12
+ AZURE_FUNCTIONAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root
13
+
14
jobs:
15
build-and-deploy:
16
runs-on: ubuntu-latest
@@ -22,5 +26,6 @@ jobs:
22
26
- uses: Azure/functions-action@v1
23
27
id: fa
24
28
with:
25
- app-name: AutomaticClockOuts
29
+ app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }}
30
+ package: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}
31
publish-profile: ${{ secrets.SCM_CREDENTIALS }}
0 commit comments