Skip to content

Commit

Permalink
Switch GHA build workflow to dotnet publish
Browse files Browse the repository at this point in the history
  • Loading branch information
reiichi001 committed Jun 17, 2023
1 parent c57eb5b commit 72cf794
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:
run: dotnet restore

- name: Dotnet Build (Default)
run: dotnet build --configuration Release --no-restore -o ./dist/XIVLauncher.Core
run: dotnet publish -r linux-x64 --sc --configuration Release --no-restore -o ./dist/XIVLauncher.Core

- name: Dotnet Build (Arch)
run: dotnet build --configuration Release -p:DefineConstants=WINE_XIV_ARCH_LINUX --no-restore -o ./dist/XIVLauncher.Core-arch
run: dotnet publish -r linux-x64 --sc --configuration Release -p:DefineConstants=WINE_XIV_ARCH_LINUX --no-restore -o ./dist/XIVLauncher.Core-arch

- name: Dotnet Build (Fedora)
run: dotnet build --configuration Release -p:DefineConstants=WINE_XIV_FEDORA_LINUX --no-restore -o ./dist/XIVLauncher.Core-fedora
run: dotnet publish -r linux-x64 --sc --configuration Release -p:DefineConstants=WINE_XIV_FEDORA_LINUX --no-restore -o ./dist/XIVLauncher.Core-fedora

- name: Dotnet Test
run: dotnet test --no-build --verbosity normal

0 comments on commit 72cf794

Please sign in to comment.