Skip to content

Commit

Permalink
Switch GHA release 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 72cf794 commit 5ca4cb0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/make-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ jobs:

- name: Dotnet Build (Default)
working-directory: ./src/XIVLauncher.Core/
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)
working-directory: ./src/XIVLauncher.Core/
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)
working-directory: ./src/XIVLauncher.Core/
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: Generate nuget-dependencies.json
working-directory: ./src/XIVLauncher.Core/
Expand Down

0 comments on commit 5ca4cb0

Please sign in to comment.