Skip to content

Commit

Permalink
try build again
Browse files Browse the repository at this point in the history
  • Loading branch information
Kukks committed Nov 28, 2024
1 parent 1f23480 commit d835c7c
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions .github/workflows/desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ jobs:
run: dotnet test -v n --logger "console;verbosity=normal" BTCPayApp.Tests
# Stop infrastructure

build-desktop:
runs-on: ubuntu-latest
build-desktop-win:
runs-on: windows-latest
steps:
# Setup code, .NET and Android
- uses: actions/checkout@v4
Expand All @@ -64,10 +64,6 @@ jobs:
run: dotnet publish BTCPayApp.Photino/BTCPayApp.Photino.csproj -f win-x86 -c Debug -o publish/win-x86
- name: Build win-arm64
run: dotnet publish BTCPayApp.Photino/BTCPayApp.Photino.csproj -f win-arm64 -c Debug -o publish/win-arm64
- name: Build linux x64
run: dotnet publish BTCPayApp.Photino/BTCPayApp.Photino.csproj -f linux-x64 -c Debug -o publish/linux-x64
- name: Build linux arm64
run: dotnet publish BTCPayApp.Photino/BTCPayApp.Photino.csproj -f linux-arm64 -c Debug -o publish/linux-arm64
- name: Upload artifact win
uses: actions/upload-artifact@v4
with:
Expand All @@ -76,6 +72,21 @@ jobs:
publish/win-x64
publish/win-x86
publish/win-arm64
build-desktop-linux:
runs-on: ubuntu-latest
steps:
# Setup code, .NET and Android
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build linux x64
run: dotnet publish BTCPayApp.Photino/BTCPayApp.Photino.csproj -f linux-x64 -c Debug -o publish/linux-x64
- name: Build linux arm64
run: dotnet publish BTCPayApp.Photino/BTCPayApp.Photino.csproj -f linux-arm64 -c Debug -o publish/linux-arm64
- name: Upload artifact linux
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit d835c7c

Please sign in to comment.