From 9125c2a42561b0292f7df9a932e6b49baa6e3555 Mon Sep 17 00:00:00 2001 From: Tyler Jang Date: Tue, 25 Jun 2024 11:54:05 -0700 Subject: [PATCH] Fix release pipeline (#42) We moved onto different runners so we need to make sure `gh` is installed. Previous [failure](https://github.com/trunk-io/toolbox/actions/runs/9667815723/job/26670607023) --- .github/workflows/release.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3d608c7..cd1ef40 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -69,6 +69,11 @@ jobs: -C build/${target} trunk-toolbox done + - name: Install gh binary + uses: trunk-io/trunk-action/install@v1 + with: + tools: gh + - name: Create GH release and upload binary env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}