BitMono.CLI #116
Workflow file for this run
This file contains hidden or 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: BitMono.CLI | |
| on: | |
| create: | |
| tags: | |
| - "*" | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - '.github/workflows/BitMono.CLI.yaml' | |
| - 'src/**' | |
| - 'test/**' | |
| pull_request: | |
| paths: | |
| - '.github/workflows/BitMono.CLI.yaml' | |
| - 'src/**' | |
| - 'test/**' | |
| jobs: | |
| Build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| target-framework: [net9.0, net8.0, net7.0, net6.0, net462, netstandard2.1, netstandard2.0] | |
| runtime: [linux-x64, win-x64, linux-arm64, win-arm64, osx-x64, osx-arm64, win-x86] | |
| exclude: | |
| # Exclude win-x86 builds for .NET Standard as they're architecture-independent | |
| - runtime: win-x86 | |
| target-framework: netstandard2.0 | |
| - runtime: win-x86 | |
| target-framework: netstandard2.1 | |
| outputs: | |
| version: ${{ steps.project-build.outputs.version }} | |
| is_prerelease: ${{ steps.project-build.outputs.is_prerelease }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| env: | |
| # Disable the .NET logo in the console output. | |
| DOTNET_NOLOGO: true | |
| # Disable the .NET first time experience to skip caching NuGet packages and speed up the build. | |
| DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
| # Disable sending .NET CLI telemetry to Microsoft. | |
| DOTNET_CLI_TELEMETRY_OPTOUT: true | |
| DOTNET_INSTALL_DIR: ${{ github.workspace }}/.dotnet | |
| with: | |
| dotnet-version: 9.x | |
| - name: Build Project | |
| uses: ./.github/actions/project-build | |
| id: project-build | |
| with: | |
| project_path: src/BitMono.CLI/BitMono.CLI.csproj | |
| nuget_push: false | |
| target_framework: ${{ matrix.target-framework }} | |
| runtime_version: ${{ matrix.runtime }} | |
| github_token: ${{ secrets.PAT }} | |
| - name: Install zip (for Linux/macOS) | |
| run: | | |
| if [[ "${{ matrix.runtime }}" =~ ^linux ]]; then | |
| sudo apt-get install -y zip | |
| elif [[ "${{ matrix.runtime }}" =~ ^osx ]]; then | |
| if ! command -v zip &> /dev/null; then | |
| echo "zip is not available on this macOS runner, and it should be pre-installed." | |
| exit 1 | |
| fi | |
| fi | |
| - name: Zip artifacts | |
| run: | | |
| cd ./src/BitMono.CLI/bin/Release/${{ matrix.target-framework }}/${{ matrix.runtime }} && \ | |
| zip -qq -r ./BitMono-v${{ steps.project-build.outputs.version }}-CLI-${{ matrix.target-framework }}-${{ matrix.runtime }}.zip * | |
| - name: Upload build | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: BitMono-v${{ steps.project-build.outputs.version }}-CLI-${{ matrix.target-framework }}-${{ matrix.runtime }} | |
| path: "./src/BitMono.CLI/bin/Release/${{ matrix.target-framework }}/${{ matrix.runtime }}/BitMono-v${{ steps.project-build.outputs.version }}-CLI-${{ matrix.target-framework }}-${{ matrix.runtime }}.zip" | |
| if-no-files-found: error | |
| Release: | |
| if: github.event_name == 'create' && github.event.ref_type == 'tag' | |
| needs: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Download all artifacts | |
| uses: actions/download-artifact@v5 | |
| with: | |
| path: ./artifacts | |
| - name: Create Release | |
| uses: ncipollo/release-action@v1 | |
| with: | |
| name: BitMono Release v${{ needs.Build.outputs.version }} | |
| tag: ${{ needs.Build.outputs.version }} | |
| artifacts: "./artifacts/**/*.zip" | |
| token: ${{ secrets.PAT }} | |
| prerelease: ${{ needs.Build.outputs.is_prerelease }} | |
| allowUpdates: true | |
| draft: true | |