Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
testing deployment12
  • Loading branch information
enriquezrene committed Nov 25, 2020
commit 381f96f379992a94e168df5a01697caab30e5f07
7 changes: 6 additions & 1 deletion .github/workflows/CD-azure-functions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
branches:
- master

env:
AZURE_FUNCTIONAPP_NAME: AutomaticClockOuts # set this to your application's name
AZURE_FUNCTIONAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root

jobs:
build-and-deploy:
runs-on: ubuntu-latest
Expand All @@ -22,5 +26,6 @@ jobs:
- uses: Azure/functions-action@v1
id: fa
with:
app-name: AutomaticClockOuts
app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }}
package: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}
publish-profile: ${{ secrets.SCM_CREDENTIALS }}