From 146dad55a679e2724be35ae89db2afcff7c40b62 Mon Sep 17 00:00:00 2001 From: Rodrigo Vargas Honorato Date: Tue, 10 Sep 2024 14:24:48 +0200 Subject: [PATCH] add `release.yml` action (#23) * add `release.yml` * update `release.yml` --- .github/workflows/release.yml | 37 +++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..ef1d673 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,37 @@ +name: upload binaries +permissions: + contents: write +on: + release: + types: [published] +env: + CARGO_TERM_COLOR: always +jobs: + upload-binaries: + strategy: + matrix: + include: + - target: aarch64-unknown-linux-gnu + os: ubuntu-latest + - target: aarch64-unknown-linux-musl + os: ubuntu-latest + - target: aarch64-apple-darwin + os: macos-latest + - target: x86_64-unknown-linux-gnu + os: ubuntu-latest + - target: x86_64-unknown-linux-musl + os: ubuntu-latest + - target: x86_64-apple-darwin + os: macos-latest + # Universal macOS binary is supported as universal-apple-darwin. + - target: universal-apple-darwin + os: macos-latest + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 + - uses: taiki-e/upload-rust-binary-action@v1 + with: + bin: haddock-restraints + archive: $bin-$tag-$target + target: ${{ matrix.target }} + token: ${{ secrets.GITHUB_TOKEN }}