Release only after all is built #112
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 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| 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@v4 | |
| 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 | |