Skip to content

Commit

Permalink
Fixes to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
macaba committed Aug 21, 2024
1 parent a592d53 commit 4620422
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
- name: Upload win-x64 build
uses: actions/upload-artifact@v4
with:
name: NSD.win-x64.exe
path: builds/NSD.UI/win-x64/NSD.UI.exe
name: NSD-win-x64
path: builds/NSD.UI/win-x64/NSD-win-x64.exe

- name: Run linux-x64 build
working-directory: build-scripts
run: ./"NSD.UI (linux-x64).bat"
- name: Upload linux-x64 build
uses: actions/upload-artifact@v4
with:
name: NSD.linux-x64
path: builds/NSD.UI/linux-x64/NSD.UI
name: NSD-linux-x64
path: builds/NSD.UI/linux-x64/NSD-linux-x64
3 changes: 2 additions & 1 deletion build-scripts/NSD.UI (linux-x64).bat
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
dotnet publish ../source/NSD.UI -r linux-x64 -c Release --output ../builds/NSD.UI/linux-x64/
dotnet publish ../source/NSD.UI -r linux-x64 -c Release --output ../builds/NSD.UI/linux-x64/
ren ..\builds\NSD.UI\linux-x64\NSD.UI NSD-linux-x64
3 changes: 2 additions & 1 deletion build-scripts/NSD.UI (win-x64).bat
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
dotnet publish ../source/NSD.UI -r win-x64 -c Release --output ../builds/NSD.UI/win-x64/
dotnet publish ../source/NSD.UI -r win-x64 -c Release --output ../builds/NSD.UI/win-x64/
ren ..\builds\NSD.UI\win-x64\NSD.UI.exe NSD-win-x64.exe

0 comments on commit 4620422

Please sign in to comment.