From 933a334d5b48398678acf1c6d85c0699301e89f9 Mon Sep 17 00:00:00 2001 From: bitterpanda Date: Wed, 25 Mar 2026 10:21:06 -0700 Subject: [PATCH] Install gh cli tool on circleci --- .circleci/config.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index b566989..dd15949 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -82,6 +82,12 @@ jobs: executor: linux-machine steps: - 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: name: Extract version and check pre-release status command: |