Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Razmoth committed Jan 22, 2024
1 parent 98e77dc commit 3200330
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:
dotnet-version: 8.0.x

- name: Restore the application
run: nuget restore
run: dotnet restore

- name: Build for Windows
run: dotnet publish Audio.Desktop -c Release -r win-x64

- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: net8.0_windows
name: net8.0_windows-${{ github.sha }}
path: Audio.Desktop/bin/Release/net8.0/win-x64/publish

linux:
Expand All @@ -46,15 +46,15 @@ jobs:
dotnet-version: 8.0.x

- name: Restore the application
run: nuget restore
run: dotnet restore

- name: Build for Linux
run: dotnet publish Audio.Desktop -c Release -r linux-x64

- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: net8.0_linux
name: net8.0_linux-${{ github.sha }}
path: Audio.Desktop/bin/Release/net8.0/linux-x64/publish

osx:
Expand All @@ -70,13 +70,13 @@ jobs:
dotnet-version: 8.0.x

- name: Restore the application
run: nuget restore
run: dotnet restore

- name: Build for Mac
run: dotnet publish Audio.Desktop -c Release -r osx-x64

- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: net8.0_osx
name: net8.0_osx-${{ github.sha }}
path: Audio.Desktop/bin/Release/net8.0/osx-x64/publish
2 changes: 1 addition & 1 deletion Audio.Desktop/Audio.Desktop.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<SelfContained>True</SelfContained>
<SelfContained>true</SelfContained>
<PublishTrimmed>true</PublishTrimmed>
<PublishSingleFile>true</PublishSingleFile>
</PropertyGroup>
Expand Down

0 comments on commit 3200330

Please sign in to comment.