avoiding RID error #20
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
on: | |
push: | |
paths-ignore: | |
- "README.md" | |
- "ChangeLog.md" | |
- ".github/workflows/pull_request.yaml" | |
- ".github/workflows/release.yaml" | |
jobs: | |
default: | |
strategy: | |
matrix: | |
os: | |
- windows-2022 | |
- ubuntu-20.04 | |
- macos-11 | |
- macos-12-arm | |
include: | |
- os: windows-2022 | |
osimage: windows-2022 | |
exename: cs2mmd.exe | |
runtime: win-x64 | |
- os: ubuntu-20.04 | |
osimage: ubuntu-20.04 | |
exename: cs2mmd | |
runtime: linux-x64 | |
- os: macos-11 | |
osimage: macos-11 | |
exename: cs2mmd | |
runtime: osx-x64 | |
- os: macos-12-arm | |
osimage: macos-11 | |
exename: cs2mmd | |
runtime: osx-arm64 | |
runs-on: ${{ matrix.osimage }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-dotnet@v2 | |
name: "setup dotnet 7.0" | |
with: | |
dotnet-version: "7.0.x" | |
- uses: actions/setup-dotnet@v2 | |
name: "setup dotnet 8.0" | |
with: | |
dotnet-version: "8.0.x" | |
- run: "pwsh ./build.ps1 --target Test --configuration Release" | |
name: "running test suite" | |
- name: "build nuget package" | |
run: "pwsh ./build.ps1 --target Pack --configuration Release --version-suffix alpha.${{ github.run_number }}" | |
if: ${{ matrix.os == 'windows-2022' }} | |
- name: "build tgz binary" | |
run: "pwsh ./build.ps1 --target ArchiveTgz --configuration Release --runtime ${{ matrix.runtime }} --version-suffix alpha.${{ github.run_number }}" | |
if: ${{ matrix.os != 'windows-2022'}} | |
- name: "build zip binary" | |
run: "pwsh ./build.ps1 --target ArchiveZip --configuration Release --runtime ${{ matrix.runtime }} --version-suffix alpha.${{ github.run_number }}" | |
if: ${{ matrix.os == 'windows-2022'}} | |
- name: "collect nupkg" | |
uses: actions/upload-artifact@v3 | |
with: | |
name: nupkg | |
path: | | |
artifacts/Release/Any/*.nupkg | |
artifacts/Release/Any/*.snupkg | |
if: ${{ matrix.os == 'windows-2022' }} | |
- name: push nuget package to github package registry | |
run: "pwsh ./build.ps1 --target Push --configuration Release --api-key ${{secrets.GITHUB_TOKEN}} --package-source https://nuget.pkg.github.com/itn3000/index.json" | |
if: ${{ matrix.os == 'windows-2022' }} | |
- name: "collect tgz binary" | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "tgz-${{ matrix.runtime }}" | |
path: "artifacts/archive/Release/${{ matrix.runtime }}/*.tgz" | |
if: ${{ matrix.os != 'windows-2022' }} | |
- name: "collect zip binary" | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "zip-${{ matrix.runtime }}" | |
path: "artifacts/archive/Release/${{ matrix.runtime }}/*.zip" | |
if: ${{ matrix.os == 'windows-2022' }} | |
get_artifact_list: | |
runs-on: ubuntu-20.04 | |
needs: default | |
steps: | |
- uses: actions/download-artifact@v3 | |
name: "downloading artifacts" | |
with: | |
path: artifacts | |
- name: list files | |
run: ls -R artifacts |