diff --git a/.github/README.md b/.github/README.md index ca68c3a..0ef3bef 100755 --- a/.github/README.md +++ b/.github/README.md @@ -92,7 +92,7 @@ Probably most of the speed gains are because I am bypassing kubectl and just edi #### Binary Download and extract the binary. ```zsh -KUBESESS_VERSION=1.2.10 && \ +KUBESESS_VERSION=1.2.11 && \ KUBESESS_OS=x86_64-unknown-linux-gnu && \ wget "https://github.com/Ramilito/kubesess/releases/download/${KUBESESS_VERSION}/kubesess_${KUBESESS_VERSION}_${KUBESESS_OS}.tar.gz" && \ mkdir -p $HOME/.kube/kubesess && tar zxpf kubesess_${KUBESESS_VERSION}_${KUBESESS_OS}.tar.gz -C $HOME/.kube/kubesess && \ diff --git a/.github/workflows/package_and_release.yaml b/.github/workflows/package_and_release.yaml index a44b5c7..3341d16 100644 --- a/.github/workflows/package_and_release.yaml +++ b/.github/workflows/package_and_release.yaml @@ -18,28 +18,25 @@ jobs: RUST_BACKTRACE: 1 strategy: matrix: - build: [linux, macos, macos-arm] include: - - build: linux - os: ubuntu-22.04 + - os: ubuntu-22.04 + rust: stable + target: x86_64-unknown-linux-gnu + - os: ubuntu-22.04 + rust: stable + target: aarch64-unknown-linux-gnu + - os: ubuntu-22.04 rust: stable target: x86_64-unknown-linux-musl - name: x86_64-linux - - build: linux-arm - os: ubuntu-22.04 + - os: ubuntu-22.04 rust: stable target: aarch64-unknown-linux-musl - name: aarch64-linux - - build: macos - os: macos-12 + - os: macos-12 rust: stable target: x86_64-apple-darwin - name: x86_64-macos - - build: macos-arm - os: macos-12 + - os: macos-12 rust: stable target: aarch64-apple-darwin - name: aarch64-macos steps: - uses: actions/checkout@v3 with: diff --git a/Cargo.lock b/Cargo.lock index 8aac0fe..41bf0f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -546,7 +546,7 @@ dependencies = [ [[package]] name = "kubesess" -version = "1.2.9" +version = "1.2.11" dependencies = [ "assert_cmd", "clap 3.2.16", diff --git a/Cargo.toml b/Cargo.toml index 476a643..f001cc8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kubesess" -version = "1.2.10" +version = "1.2.11" authors = ["https://github.com/ramilito"] edition = "2021"