2ae3760b95
Bumps the gh-deps group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [dorny/paths-filter](https://github.com/dorny/paths-filter). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) Updates `dorny/paths-filter` from 3 to 4 - [Release notes](https://github.com/dorny/paths-filter/releases) - [Changelog](https://github.com/dorny/paths-filter/blob/master/CHANGELOG.md) - [Commits](https://github.com/dorny/paths-filter/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-deps - dependency-name: dorny/paths-filter dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-deps ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
33 lines
626 B
YAML
33 lines
626 B
YAML
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
|
|
- os: macos-latest
|
|
- os: windows-latest
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
name: 🦀 Upload Artifacts
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: taiki-e/upload-rust-binary-action@v1
|
|
with:
|
|
bin: "patch"
|
|
target: ${{ matrix.target }}
|
|
tar: none
|
|
zip: all
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|