From 3380313e750356431318d4d88e62b6845f80c9db Mon Sep 17 00:00:00 2001 From: Gideon Date: Fri, 9 Jan 2026 11:02:06 +0100 Subject: [PATCH] chore: Fix binstall installs By putting the crate name (typos-cli) in the archive name instead of typos --- .github/workflows/post-release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/post-release.yml b/.github/workflows/post-release.yml index 0eebcb734..d20fdb4c0 100644 --- a/.github/workflows/post-release.yml +++ b/.github/workflows/post-release.yml @@ -22,6 +22,7 @@ on: env: BIN_NAME: typos + DIST_NAME: typos-cli # We need this to be able to create releases. permissions: @@ -102,7 +103,7 @@ jobs: shell: bash run: | outdir="./target/${{ matrix.target }}/release" - staging="${{ env.BIN_NAME }}-${{ needs.create-release.outputs.tag }}-${{ matrix.target }}" + staging="${{ env.DIST_NAME }}-${{ needs.create-release.outputs.tag }}-${{ matrix.target }}" mkdir -p "$staging"/doc cp {README.md,LICENSE-*} "$staging/" cp {CHANGELOG.md,docs/*} "$staging/doc/"