Install gh cli tool on circleci

This commit is contained in:
bitterpanda 2026-03-25 10:21:06 -07:00
parent 3b73add44f
commit 933a334d5b

View file

@ -82,6 +82,12 @@ jobs:
executor: linux-machine executor: linux-machine
steps: steps:
- checkout - checkout
- run:
name: Install GitHub CLI
command: |
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list
sudo apt-get update && sudo apt-get install -y gh
- run: - run:
name: Extract version and check pre-release status name: Extract version and check pre-release status
command: | command: |