Follow up to 006e76c938b73878a1ca0dcfb75396a69a83820c #548
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
release: | |
types: | |
- released | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: pwsh | |
strategy: | |
matrix: | |
platform: [netframework, net-x86, net-x64] | |
include: | |
- platform: netframework | |
package-name: netframework | |
build-dir: net48 | |
- platform: net-x86 | |
package-name: net-win32 | |
build-dir: net8.0-windows\win-x86\publish | |
- platform: net-x64 | |
package-name: net-win64 | |
build-dir: net8.0-windows\win-x64\publish | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: true | |
- uses: actions/[email protected] | |
with: | |
dotnet-version: 8.0.x | |
dotnet-quality: ga | |
- uses: microsoft/[email protected] | |
- name: Build dnSpy (${{matrix.platform}}) | |
run: .\build.ps1 ${{matrix.platform}} | |
- name: Create output directory | |
run: New-Item -ItemType Directory -Path C:\builtfiles\dnSpy-${{matrix.platform}} -Force > $null | |
continue-on-error: true | |
- name: Copy release files for upload | |
run: Copy-Item -Path dnSpy\dnSpy\bin\Release\${{matrix.build-dir}}\* -Destination C:\builtfiles\dnSpy-${{matrix.platform}} -Recurse | |
- uses: actions/[email protected] | |
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') | |
with: | |
name: dnSpy-${{matrix.package-name}} | |
path: C:\builtfiles\dnSpy-${{matrix.platform}} | |
if-no-files-found: error | |
compression-level: 9 |