Skip to content

Commit

Permalink
Create release GitHub action
Browse files Browse the repository at this point in the history
Created action to cross-compile and upload release
  • Loading branch information
AndreaRicchi committed Nov 15, 2023
1 parent fb556e1 commit 3d1fd35
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 1 deletion.
94 changes: 94 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
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:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v1
- name: Cache Rust dependencies
uses: actions/[email protected]
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/[email protected]
with:
cargo_toml_folder: ftu/

- 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/[email protected]
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/[email protected]
with:
cargo_toml_folder: ftu/

- 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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 3d1fd35

Please sign in to comment.