Skip to content

Commit 0ec6d04

Browse files
authored
Merge pull request #25 from ioet/testing11
testing deployment12
2 parents 575f687 + 381f96f commit 0ec6d04

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/CD-azure-functions.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
branches:
88
- master
99

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+
1014
jobs:
1115
build-and-deploy:
1216
runs-on: ubuntu-latest
@@ -22,5 +26,6 @@ jobs:
2226
- uses: Azure/functions-action@v1
2327
id: fa
2428
with:
25-
app-name: AutomaticClockOuts
29+
app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }}
30+
package: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}
2631
publish-profile: ${{ secrets.SCM_CREDENTIALS }}

0 commit comments

Comments
 (0)