Skip to content

Commit

Permalink
add o flag
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDanOak committed Nov 12, 2023
1 parent 17615fa commit 369730c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
run: dotnet restore src/EndlessOnlinePatcher.Desktop/EndlessOnlinePatcher.Desktop.csproj /p:EnableWindowsTargeting=true
- name: Build & Publish Version ${{ github.run_number }}
run: |
cd src/EndlessOnlinePatcher.Desktop;
mkdir ../dist;
dotnet build --configuration Release --no-restore /p:EnableWindowsTargeting=true;
mkdir ../dist/self-contained;
dotnet publish EndlessOnlinePatcher.Desktop.csproj -c Release ../dist/self-contained -r win-x64 --self-contained true /p:Version=0.0.0.${{ github.run_number }} /p:EnableWindowsTargeting=true;
mkdir ../dist/framework-dependant;
dotnet publish EndlessOnlinePatcher.Desktop.csproj -c Release ../dist/framework-dependant -r win-x64 --self-contained false /p:Version=0.0.0.${{ github.run_number }} /p:EnableWindowsTargeting=true;
cd src/EndlessOnlinePatcher.Desktop
mkdir ../dist
dotnet build --configuration Release --no-restore /p:EnableWindowsTargeting=true
mkdir ../dist/self-contained
dotnet publish EndlessOnlinePatcher.Desktop.csproj -c Release -o ../dist/self-contained -r win-x64 --self-contained true /p:Version=0.0.0.${{ github.run_number }} /p:EnableWindowsTargeting=true
mkdir ../dist/framework-dependant
dotnet publish EndlessOnlinePatcher.Desktop.csproj -c Release -o ../dist/framework-dependant -r win-x64 --self-contained false /p:Version=0.0.0.${{ github.run_number }} /p:EnableWindowsTargeting=true

0 comments on commit 369730c

Please sign in to comment.