Skip to content

Commit f40e4e9

Browse files
Nicolas Brieusselclaude
authored andcommitted
fix(ci): use openbao .deb package for bao CLI install
Version 2.5.5 dropped the .zip distribution in favour of .deb / .rpm. Also bump BAO_VERSION to 2.5.5 (latest). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KoJ6zVHxYtUKtSNXinmct7
1 parent bb88818 commit f40e4e9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ jobs:
7171
- name: Install bao CLI
7272
run: |
7373
curl -sSfL \
74-
"https://github.com/openbao/openbao/releases/download/v${BAO_VERSION}/bao_${BAO_VERSION}_linux_amd64.zip" \
75-
-o bao.zip
76-
unzip -q bao.zip bao
77-
sudo mv bao /usr/local/bin/bao
74+
"https://github.com/openbao/openbao/releases/download/v${BAO_VERSION}/openbao_${BAO_VERSION}_linux_amd64.deb" \
75+
-o openbao.deb
76+
sudo dpkg -i openbao.deb
77+
bao version
7878
7979
- name: Start minikube
8080
uses: medyagh/setup-minikube@latest

0 commit comments

Comments
 (0)