Skip to content

Commit

Permalink
Fix and improve CometBFT installation for Namada workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ljoss17 committed Jun 4, 2024
1 parent 0bff619 commit 78e74da
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/namada.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,12 @@ jobs:
run: |
curl -o cometbft.tar.gz -LO https://github.com/cometbft/cometbft/releases/download/v0.37.2/cometbft_0.37.2_linux_amd64.tar.gz
tar -xvzf cometbft.tar.gz
mv cometbft /usr/local/bin
mkdir -p ~/local/bin
chmod +x cometbft
mv cometbft ~/local/bin
- name: Update environment path
run: |
echo "${HOME}/local/bin" >> $GITHUB_PATH
- name: Download MASP parameters
run: |
mkdir -p /home/runner/.masp-params
Expand Down

0 comments on commit 78e74da

Please sign in to comment.