Skip to content

Commit

Permalink
Fix release pipelines
Browse files Browse the repository at this point in the history
Change debug pipelines to use debug build
  • Loading branch information
Meister1593 committed Jan 3, 2024
1 parent a1199c2 commit eb817f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dotnet-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ jobs:
with:
dotnet-version: 8.0.x
- name: Publish for linux
run: dotnet publish -r linux-x64
run: dotnet publish -r linux-x64 -c Debug
- name: Publish for windows
run: dotnet publish -r win-x64
run: dotnet publish -r win-x64 -c Debug
- name: Upload Linux Artifact
uses: actions/upload-artifact@v4.0.0
with:
name: ADBForwarder-linux-x64.zip
path: ADBForwarder/bin/Release/net8.0/linux-x64/publish
path: ADBForwarder/bin/Debug/net8.0/linux-x64/publish
- name: Upload Windows Artifact
uses: actions/upload-artifact@v4.0.0
with:
name: ADBForwarder-windows-x64.zip
path: ADBForwarder/bin/Release/net8.0/win-x64/publish
path: ADBForwarder/bin/Debug/net8.0/win-x64/publish
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Publish for linux
run: dotnet publish -r linux-x64 -c Release
- name: Publish for windows
run: dotnet build -r win-x64 -c Release
run: dotnet publish -r win-x64 -c Release
- name: Upload linux binaries to release
uses: svenstaro/upload-release-action@v2
with:
Expand Down

0 comments on commit eb817f2

Please sign in to comment.