From 9e3add1d68ac3830bd5ff04e94eafc37c7e98093 Mon Sep 17 00:00:00 2001 From: Gianluca Della Vedova Date: Wed, 27 Dec 2023 09:01:18 +0100 Subject: [PATCH] build binaries when releasing --- .github/workflows/binaries.yml | 85 ++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 .github/workflows/binaries.yml diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml new file mode 100644 index 0000000..a29f74c --- /dev/null +++ b/.github/workflows/binaries.yml @@ -0,0 +1,85 @@ +name: Binaries + +on: + release: + types: [published] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v1 + + - name: Install latest rust toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + default: true + override: true + + - name: Build + run: cargo build --all --release && mv target/release/PROJECT_NAME target/release/PROJECT_NAME_amd64 + + - name: Release + uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + files: | + target/release/PROJECT_NAME_amd64 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + build-win: + runs-on: windows-latest + + steps: + - name: Checkout + uses: actions/checkout@v1 + + - name: Install latest rust toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + default: true + override: true + + - name: Build + run: cargo build --all --release + + - name: Release + uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + files: target/release/PROJECT_NAME.exe + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + build-mac: + runs-on: macos-latest + + steps: + - name: Checkout + uses: actions/checkout@v1 + + - name: Install latest rust toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + target: x86_64-apple-darwin + default: true + override: true + + - name: Build for mac + run: cargo build --all --release && mv target/release/PROJECT_NAME target/release/PROJECT_NAME_darwin + + - name: Release + uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + files: | + target/release/PROJECT_NAME_darwin + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +