We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 495da60 commit 3fc92f3Copy full SHA for 3fc92f3
.github/workflows/test.yml
@@ -163,10 +163,10 @@ jobs:
163
# the old gaiad binary version is hardcoded, need to be updated each major release.
164
- name: Install Old Gaiad
165
run: |
166
- git checkout v18.1.0
167
- make build
168
- cp ./build/gaiad ./build/gaiadold
169
- go clean -modcache
+ curl -LO https://github.com/cosmos/gaia/releases/download/v18.1.0/gaiad-v18.1.0-linux-amd64
+ chmod a+x gaiad-v18.1.0-linux-amd64
+ mkdir build
+ cp ./gaiad-v18.1.0-linux-amd64 ./build/gaiadold
170
if: env.GIT_DIFF
171
- name: Install New Gaiad
172
0 commit comments