name: build_patch_artifacts permissions: contents: write on: release: types: [created] jobs: upload-artifacts: strategy: matrix: include: - target: x86_64-unknown-linux-musl os: ubuntu-latest - target: x86_64-apple-darwin os: macos-latest - target: aarch64-apple-darwin os: macos-latest - os: windows-latest runs-on: ${{ matrix.os }} name: 🦀 Upload Artifacts steps: - uses: actions/checkout@v7 - uses: taiki-e/upload-rust-binary-action@v1 with: bin: "patch" target: ${{ matrix.target }} tar: none zip: all token: ${{ secrets.GITHUB_TOKEN }}