fix #2
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: ci | |
on: | |
push: | |
branches: [ main, v* ] | |
pull_request: | |
branches: [ main, v* ] | |
workflow_dispatch: | |
jobs: | |
windows-x64: | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
matrix: | |
architecture: [ x64 ] | |
configuration: [ debug, release ] | |
os: [ windows ] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./scripts/cibuild.cmd -configuration ${{ matrix.configuration }} -architecture ${{ matrix.architecture }} | |
shell: cmd | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.os }}_${{ matrix.configuration }}_${{ matrix.architecture }} | |
path: | | |
./artifacts/bin/**/* | |
./artifacts/log/**/* | |
./artifacts/pkg/**/* | |
./artifacts/tst/**/* | |
if-no-files-found: error | |
linux-x64: | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
matrix: | |
architecture: [ x64 ] | |
configuration: [ debug, release ] | |
os: [ ubuntu ] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./scripts/cibuild.sh --configuration ${{ matrix.configuration }} --architecture ${{ matrix.architecture }} | |
shell: bash | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.os }}_${{ matrix.configuration }}_${{ matrix.architecture }} | |
path: | | |
./artifacts/bin/**/* | |
./artifacts/log/**/* | |
./artifacts/pkg/**/* | |
./artifacts/tst/**/* | |
if-no-files-found: error | |
macos-x64: | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
matrix: | |
architecture: [ x64 ] | |
configuration: [ debug, release ] | |
os: [ macos ] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./scripts/cibuild.sh --configuration ${{ matrix.configuration }} --architecture ${{ matrix.architecture }} | |
shell: bash | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.os }}_${{ matrix.configuration }}_${{ matrix.architecture }} | |
path: | | |
./artifacts/bin/**/* | |
./artifacts/log/**/* | |
./artifacts/pkg/**/* | |
./artifacts/tst/**/* | |
if-no-files-found: error | |
build-nuget-preview: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./scripts/cibuild.cmd -configuration release -architecture x64 | |
shell: cmd | |
env: | |
EXCLUDE_RUN_ID_FROM_PACKAGE: true | |
EXCLUDE_SUFFIX_FROM_VERSION: false | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: nuget_preview | |
path: | | |
./artifacts/bin/**/* | |
./artifacts/log/**/* | |
./artifacts/pkg/**/* | |
./artifacts/tst/**/* | |
if-no-files-found: error | |
build-nuget-release: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./scripts/cibuild.cmd -configuration release -architecture x64 | |
shell: cmd | |
env: | |
EXCLUDE_RUN_ID_FROM_PACKAGE: true | |
EXCLUDE_SUFFIX_FROM_VERSION: true | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: nuget_release | |
path: | | |
./artifacts/bin/**/* | |
./artifacts/log/**/* | |
./artifacts/pkg/**/* | |
./artifacts/tst/**/* | |
if-no-files-found: error | |
publish-nightlies-github: | |
runs-on: ubuntu-latest | |
if: false | |
needs: [ windows-x64, linux-x64, macos-x64 ] | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: windows_release_x64 | |
path: ./artifacts | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- run: dotnet nuget push "./artifacts/pkg/Release/*.nupkg" --source https://nuget.pkg.github.com/dotnet/index.json --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate |