From 3cc67eabdb5b79850cda3a57fea6537169dabbc7 Mon Sep 17 00:00:00 2001 From: Tiago Castro Date: Mon, 21 Oct 2024 00:53:01 +0100 Subject: [PATCH] ci: add release publish workflow On a new published release, build and upload the cli's as static binaries in a tar file. Signed-off-by: Tiago Castro --- .github/workflows/release.yml | 42 +++++++++++++++++++++++++++++++++++ 1 file changed, 42 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 000000000..7cfe673e7 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,42 @@ +name: Publish Bins +on: + release: + types: [published] +jobs: + paperclip-bins: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + include: + - os: ubuntu-latest + target: x86_64-unknown-linux-musl + - os: ubuntu-latest + target: aarch64-unknown-linux-musl + - os: macos-14 + target: x86_64-apple-darwin + - os: macos-13 + target: aarch64-apple-darwin + steps: + - uses: actions/checkout@v4 + with: + submodules: recursive + - name: Install Rust + uses: dtolnay/rust-toolchain@stable + with: + targets: ${{ matrix.target }} + - name: Build + uses: actions-rs/cargo@v1 + with: + use-cross: true + command: build + args: --bins --verbose --release --features "cli" -p paperclip -p paperclip-ng --target ${{ matrix.target }} + - name: Archive + shell: bash + run: | + tar -czf paperclip-${{ matrix.target }}.tar.gz LICENSE-APACHE LICENSE-MIT -C ./target/${{ matrix.target }}/release/ paperclip paperclip-ng + - name: Publish + env: + GH_TOKEN: ${{ github.token }} + run: | + gh release upload "${{ github.event.release.tag_name }}" --clobber *.tar.gz \ No newline at end of file