Skip to content

Commit

Permalink
Update script
Browse files Browse the repository at this point in the history
  • Loading branch information
JaoHundred committed Sep 23, 2024
1 parent 9dbe3b0 commit 33aee99
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@ jobs:


- name: Build Model
run: dotnet publish Genealogy/ModelA/ModelA.csproj -c Release -r win-x86 --self-contained -o ./Release
run: dotnet publish ModelA/ModelA.csproj -c Release -r win-x86 --self-contained -o ./Release

- name: Build Gene dll
run: dotnet publish Genealogy/GeneA/GeneA.csproj -c Release -r win-x86 --self-contained -o ./Release
run: dotnet publish GeneA/GeneA.csproj -c Release -r win-x86 --self-contained -o ./Release

# Build the EXE in Release mode
- name: Build EXE
run: dotnet publish Genealogy/GeneA.Desktop/GeneA.Desktop.csproj -c Release -r win-x86 --self-contained -o ./Release
run: dotnet publish GeneA.Desktop/GeneA.Desktop.csproj -c Release -r win-x86 --self-contained -o ./Release

# Create the EXE installer using NSIS
- name: Create EXE Installer
run: makensis Genealogy/DesktopInstall/GeneInstallerScript.nsi
run: makensis DesktopInstall/GeneInstallerScript.nsi

# Build the APK in Release mode
- name: Build APK
run: dotnet publish Genealogy/GeneA.Android/GeneA.Android.csproj -c Release -r android-arm --self-contained -o ./Release
run: dotnet publish GeneA.Android/GeneA.Android.csproj -c Release -r android-arm --self-contained -o ./Release

- name: Download Keystore
run: |
Expand Down

0 comments on commit 33aee99

Please sign in to comment.