Skip to content

Commit

Permalink
fix result null error (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
marumaru1019 authored Feb 4, 2024
1 parent 0ba9c8e commit ee1ba77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/5.internal-document-search-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
$ENV:WEBAPP_NAME = "app-backend-${{ github.run_id }}"
cd 5.internal-document-search/src/backend
$results = az webapp deployment source config-zip --resource-group $ENV:AZURE_WEBAPP_RESOURCE_GROUP --name $ENV:WEBAPP_NAME --src ./app.zip
$results = az webapp deployment source config-zip --resource-group $ENV:AZURE_WEBAPP_RESOURCE_GROUP --name $ENV:WEBAPP_NAME --src ./app.zip 2>&1 | Out-String
echo "$results"
Expand Down

0 comments on commit ee1ba77

Please sign in to comment.