1
0
mirror of https://github.com/bitwarden/server synced 2025-12-31 23:53:17 +00:00

Update output directory for dotnet builds (#1358)

* Update output directory for dotnet builds

* Update Dotnet build output path
This commit is contained in:
Vince Grassia
2021-05-27 12:16:12 -04:00
committed by GitHub
parent fffdd17915
commit 21003c61ab
34 changed files with 56 additions and 59 deletions

View File

@@ -72,7 +72,7 @@ jobs:
echo "Restore"
dotnet restore $SERVICE_NAME.csproj
echo "Clean"
dotnet clean $SERVICE_NAME.csproj -c "Release" -o obj/Azure/publish
dotnet clean $SERVICE_NAME.csproj -c "Release" -o obj/build-output/publish
if [ "$GULP" == "true" ]; then
npm install
@@ -81,9 +81,9 @@ jobs:
fi
echo "Publish"
dotnet publish $SERVICE_NAME.csproj -c "Release" -o obj/Azure/publish
dotnet publish $SERVICE_NAME.csproj -c "Release" -o obj/build-output/publish
cd obj/Azure/publish
cd obj/build-output/publish
zip -r $SERVICE_NAME.zip .
mv $SERVICE_NAME.zip ../../../
env: