Install protoc-gen-bitwise Python deps into a project-local venv required on macOS Homebrew Python under PEP 668 #142
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: Build Executable | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| push: | |
| branches: | |
| - "main" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| include: | |
| - rid: linux-x64 | |
| os: ubuntu-latest | |
| - rid: win-x64 | |
| os: windows-latest | |
| - rid: osx-arm64 | |
| os: macos-latest | |
| runs-on: ${{ matrix.os }} | |
| name: Build ${{ matrix.rid }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: "10.0.x" | |
| - name: Publish | |
| run: > | |
| dotnet publish src/DCLPulse/DCLPulse.csproj | |
| -c Release | |
| -r ${{ matrix.rid }} | |
| --self-contained | |
| -p:PublishSingleFile=true | |
| -p:GenerateProto=false | |
| -o ./artifacts/${{ matrix.rid }} | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: dcl-pulse-${{ matrix.rid }} | |
| path: ./artifacts/${{ matrix.rid }} |