Skip to content

Commit

Permalink
Install hub CLI on the runner in build.yml
Browse files Browse the repository at this point in the history
Sometime between August and October 2023,
GitHub removed the `hub` CLI from their runners.
(mislav/hub#3338)
Which we use to upload the built workflows and
attach them to the release. In this change, we update
the build script to explicitly install `hub`.
  • Loading branch information
mr-pennyworth committed Feb 6, 2024
1 parent ea84ae0 commit 87b02b4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ jobs:
draft: false
prerelease: false

- name: Install hub CLI for Uploading Release Assets
run: brew install hub

- name: Upload Release Assets
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 87b02b4

Please sign in to comment.