Skip to content
This repository was archived by the owner on Mar 16, 2022. It is now read-only.

Commit bae86c5

Browse files
committed
fix base path
1 parent 090344b commit bae86c5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- ~/.nuget
2020
- run:
2121
name: Build
22-
command: dotnet publish -c Release -o ../publish
22+
command: dotnet publish -c Release -o publish
2323
working_directory: v2/src/AzureFunctionsIntroduction
2424

2525
deploy:
@@ -41,7 +41,7 @@ jobs:
4141
- ~/.nuget
4242
- run:
4343
name: Build
44-
command: dotnet publish -c Release -o ../publish
44+
command: dotnet publish -c Release -o publish
4545
working_directory: v2/src/AzureFunctionsIntroduction
4646
- run:
4747
name: Install 7zip
@@ -51,9 +51,9 @@ jobs:
5151
command: 7z a artifact.zip ./publish/*
5252
working_directory: v2/src/AzureFunctionsIntroduction
5353
- run:
54-
name: Push to App Service
54+
name: Zipdeploy FunctionApp
5555
command: curl -X POST -u $SITE_USER:$SITE_PASS --data-binary @artifact.zip https://$FUNCTION_NAME.scm.azurewebsites.net/api/zipdeploy?isAsync=true
56-
working_directory: v2/src/AzureFunctionsIntroduction/bin/publish
56+
working_directory: v2/src/AzureFunctionsIntroduction
5757

5858
workflows:
5959
version: 2

0 commit comments

Comments
 (0)