-
Notifications
You must be signed in to change notification settings - Fork 56
/
publish.bat
9 lines (8 loc) · 851 Bytes
/
publish.bat
1
2
3
4
5
6
7
8
9
dotnet publish "./src/ChatGpt.Desktop/ChatGpt.Desktop.csproj" -p:PublishSingleFile=true -c Release --os linux -o ./linux
dotnet publish "./src/ChatGpt.Desktop/ChatGpt.Desktop.csproj" -p:PublishSingleFile=true -c Release --os win -o ./win
dotnet publish "./src/ChatGpt.Desktop/ChatGpt.Desktop.csproj" -p:PublishSingleFile=true -c Release --os osx -o ./osx
dotnet publish "./src/ChatGpt.Desktop/ChatGpt.Desktop.csproj" -p:PublishSingleFile=true --self-contained -c Release --os linux -o ./linux-self-contained
dotnet publish "./src/ChatGpt.Desktop/ChatGpt.Desktop.csproj" -p:PublishSingleFile=true --self-contained -c Release --os win -o ./win-self-contained
dotnet publish "./src/ChatGpt.Desktop/ChatGpt.Desktop.csproj" -p:PublishSingleFile=true --self-contained -c Release --os osx -o ./osx-self-contained
docker compose build
docker compose push