From f34c6a6e65009b404945a90c3d5d0f65f812cbd4 Mon Sep 17 00:00:00 2001 From: Andrea Ricchi <17642033+AndreaRicchi@users.noreply.github.com> Date: Wed, 15 Nov 2023 16:22:24 +0100 Subject: [PATCH] Create release GitHub action Created action to cross-compile and upload release --- .github/workflows/release.yml | 90 +++++++++++++++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 91 insertions(+), 1 deletion(-) 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..6f3b5f2 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,90 @@ +name: Release + +on: + workflow_dispatch: + +jobs: + rustfmt: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - run: rustup component add rustfmt + - run: cargo fmt -- --check + + build-linux: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v1 + - name: Cache Rust dependencies + uses: actions/cache@v1.0.1 + with: + path: target + key: ${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }} + restore-keys: | + ${{ runner.OS }}-build- + - name: Install latest rust toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: beta + default: true + override: true + - name: Install system dependencies + run: | + sudo apt-get update \ + && sudo apt-get install -y \ + libdbus-1-dev + + - name: Build for Linux + run: cargo build --all --release && strip target/release/ftu + + - name: Get FTU version + id: ftu_version + uses: dante-signal31/rust-app-version@v1.2.0 + + - name: Upload binaries to release + uses: svenstaro/upload-release-action@v1-release + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: target/release/ftu + asset_name: ftu-x86_64-unknown-linux-gnu + tag: ${{ steps.ftu_version.outputs.app_version }} + overwrite: true + + build-mac: + runs-on: macos-latest + + steps: + - name: Checkout + uses: actions/checkout@v1 + - name: Cache Rust dependencies + uses: actions/cache@v1.0.1 + with: + path: target + key: ${{ runner.OS }}-build-${{ hashFiles('**/Cargo.lock') }} + restore-keys: | + ${{ runner.OS }}-build- + - name: Install latest rust toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: beta + target: x86_64-apple-darwin + default: true + override: true + + - name: Build for Mac + run: cargo build --all --release && strip target/release/ftu + + - name: Get FTU version + id: ftu_version + uses: dante-signal31/rust-app-version@v1.2.0 + + - name: Upload binaries to release + uses: svenstaro/upload-release-action@v1-release + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: target/release/ftu + asset_name: ftu-x86_64-apple-darwin + tag: ${{ steps.ftu_version.outputs.app_version }} + overwrite: true diff --git a/Cargo.toml b/Cargo.toml index b7b51af..2dc3364 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ftu" -version = "0.1.0" +version = "1.0.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html