From f52b470ca6b5b321e67523756c07b42c711c7c1b Mon Sep 17 00:00:00 2001 From: JacobPEvans <20714140+JacobPEvans-personal@users.noreply.github.com> Date: Mon, 1 Jun 2026 12:44:03 -0400 Subject: [PATCH] fix(release-please): check out repo so the hub script is present MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The hub failed with 'release-please-hub.sh: No such file or directory' (exit 127) — there was no actions/checkout step, so the script wasn't on the runner. The release-please CLI uses --repo-url (no checkout needed for the release op), but the hub's own driver script must be checked out. Adds a pinned actions/checkout. App-token mint already works now that the org App is installed. Assisted-by: Claude:claude-opus-4-8 --- .github/workflows/release-please-hub.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release-please-hub.yml b/.github/workflows/release-please-hub.yml index bf5f6cb..18fd5a4 100644 --- a/.github/workflows/release-please-hub.yml +++ b/.github/workflows/release-please-hub.yml @@ -32,6 +32,9 @@ jobs: runs-on: ubuntu-latest permissions: {} steps: + - name: Check out this repo (for the hub script) + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - name: Generate org App token id: app-token uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0