Skip to content

Commit

Permalink
Merge pull request #283 from xrelkd/release/0.16.4
Browse files Browse the repository at this point in the history
Release `0.16.4`
  • Loading branch information
xrelkd authored Jan 23, 2024
2 parents e1dd684 + 036fafd commit bfc114f
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 17 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ env:
MAINTAINER: "xrelkd <46590321+xrelkd@users.noreply.github.com>"
PACKAGE_NAME: "clipcat"
PACKAGE_DESCRIPTION: "Clipboard manager written in Rust Programming Language"
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_LINKER: aarch64-linux-gnu-gcc
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc

jobs:
all:
Expand All @@ -24,9 +26,16 @@ jobs:
strategy:
matrix:
target:
- aarch64-unknown-linux-musl
- x86_64-unknown-linux-musl

include:
- target: aarch64-unknown-linux-musl
arch_deb: arm64
arch_rpm: aarch64
os: ubuntu-latest
target_rustflags: "--codegen linker=aarch64-linux-gnu-gcc"

- target: x86_64-unknown-linux-musl
arch_deb: amd64
arch_rpm: x86_64
Expand All @@ -50,6 +59,12 @@ jobs:
target: ${{ matrix.target }}
toolchain: stable

- name: Install AArch64 Toolchain
if: ${{ matrix.target == 'aarch64-unknown-linux-musl' }}
run: |
sudo apt update
sudo apt install -y gcc-aarch64-linux-gnu
- name: Create Package
id: package
env:
Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.16.3"
version = "0.16.4"
authors = ["xrelkd <46590321+xrelkd@users.noreply.github.com>"]
homepage = "https://github.com/xrelkd/clipcat"
repository = "https://github.com/xrelkd/clipcat"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ cd ~/bin

# download and extract clipcat to ~/bin/
# NOTE: replace the version with the version you want to install
export CLIPCAT_VERSION=v0.16.3
export CLIPCAT_VERSION=v0.16.4

# NOTE: the architecture of your machine,
# available value is `x86_64-unknown-linux-musl`
# available values are `x86_64-unknown-linux-musl`, `aarch64-unknown-linux-musl`
export ARCH=x86_64-unknown-linux-musl
curl -s -L "https://github.com/xrelkd/clipcat/releases/download/${CLIPCAT_VERSION}/clipcat-${CLIPCAT_VERSION}-${ARCH}.tar.gz" | tar xzf -

Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
outputs = { self, nixpkgs, flake-utils, fenix, crane }:
let
name = "clipcat";
version = "0.16.3";
version = "0.16.4";
in
(flake-utils.lib.eachDefaultSystem
(system:
Expand Down

0 comments on commit bfc114f

Please sign in to comment.