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"