From 32db4bbc1e0e0b5bc6b4cae5c5779aa7dc1d15e1 Mon Sep 17 00:00:00 2001 From: Luca Cireddu Date: Tue, 10 Sep 2024 00:05:31 +0200 Subject: [PATCH] Add releases for a arm platforms both arm32 and aarch64 (#2) * ci(github-actions): Adds ARM targets on releases * chore: Upgrade version --- .github/workflows/releases.yml | 14 +++++++++++++- CHANGELOG.md | 6 +++++- Cargo.toml | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 180671c..76ec9dc 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -21,6 +21,16 @@ jobs: include: - target: x86_64-unknown-linux-gnu os: ubuntu-latest + - target: aarch64-unknown-linux-gnu + os: ubuntu-latest + - target: aarch64-unknown-linux-musl + os: ubuntu-latest + - target: arm-unknown-linux-gnueabihf + os: ubuntu-latest + - target: arm-unknown-linux-musleabihf + os: ubuntu-latest + - target: aarch64-apple-darwin + os: macos-latest - target: x86_64-apple-darwin os: macos-latest - target: x86_64-pc-windows-msvc @@ -30,8 +40,10 @@ jobs: - uses: actions/checkout@v4 - uses: taiki-e/upload-rust-binary-action@v1 with: + token: ${{ secrets.GITHUB_TOKEN }} bin: wavelog-hamlib target: ${{ matrix.target }} tar: unix zip: windows - token: ${{ secrets.GITHUB_TOKEN }} + leading-dir: true + include: LICENSE.md,README.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 24b991d..f65cee8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v1.0.1 + +Adds ARM targets on releases + ## v1.0.0 -First release \ No newline at end of file +First release diff --git a/Cargo.toml b/Cargo.toml index fa3b9c6..14ad096 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wavelog-hamlib" -version = "1.0.0" +version = "1.0.1" authors = ["Luca Cireddu "] description = "Simple tool to connect Hamlib rigctld instance with Wavelog" repository = "https://github.com/sardylan/wavelog-hamlib.git"