Browse Source

Add Release build step

pull/2566/head
Christoph Wille 4 years ago
parent
commit
fbad0d8990
  1. 7
      .github/workflows/build-frontends.yml

7
.github/workflows/build-frontends.yml

@ -23,10 +23,13 @@ jobs: @@ -23,10 +23,13 @@ jobs:
- name: Install dependencies
run: dotnet restore ILSpy.XPlat.slnf
- name: Build
- name: Build Debug
run: dotnet build ILSpy.XPlat.slnf --configuration Debug --no-restore
- name: Pack ilspycmd
- name: Build Release ilspycmd
run: dotnet build ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj --configuration Release
- name: Pack Release ilspycmd
run: dotnet pack ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj --configuration Release --no-restore
- name: Upload ilspycmd

Loading…
Cancel
Save