Skip to content

Commit

Permalink
build: Update build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
felipebz committed Dec 21, 2023
1 parent b918386 commit 671f048
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,18 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: dotnet build -c Release
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x

- name: Build dll for Forms 6.0.8
run: dotnet build -c Release_6_0_8

- name: Build dll for Forms 12.2.1.3
run: dotnet build -c Release_12_2_1_3 -p:Platform=x64

- name: Build NuGet package
run: dotnet pack -c Release --no-build
1 change: 1 addition & 0 deletions samples/CreateModuleDemo/CreateModuleDemo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<Platforms>x64;x86</Platforms>
<OutputType>Exe</OutputType>
<Configurations>Debug;Release;Debug_12_2_1_3;Debug_6_0_8;Release_12_2_1_3;Release_6_0_8</Configurations>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 671f048

Please sign in to comment.