diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index c5ba633..cf0d541 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -84,6 +84,7 @@ jobs: # To sort the matrix, use inline syntax. - { target: aarch64-apple-darwin, os: macos-latest } - { target: aarch64-unknown-linux-gnu, os: ubuntu-latest, cross: true } + - { target: aarch64-unknown-linux-musl, os: ubuntu-latest, cross: true } - { target: x86_64-apple-darwin, os: macos-latest } - { target: x86_64-unknown-linux-gnu, os: ubuntu-latest } - { target: x86_64-unknown-linux-musl, os: ubuntu-latest } diff --git a/Cargo.lock b/Cargo.lock index 616567f..5628f61 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -341,7 +341,7 @@ checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" [[package]] name = "gls" -version = "0.1.9" +version = "0.1.10" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index f5e4b6b..fde5239 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "gls" description = "Support gitleaks config development and extend some gitleaks features." -version = "0.1.9" +version = "0.1.10" edition = "2021" rust-version = "1.70.0" readme = "README.md"