1
0
mirror of https://github.com/bitwarden/server synced 2026-01-03 17:14:00 +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

@@ -120,7 +120,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
@@ -129,9 +129,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: