Skip to content

Commit

Permalink
added checkout icq relayer step
Browse files Browse the repository at this point in the history
  • Loading branch information
dusan-maksimovic committed Dec 2, 2024
1 parent e40d29d commit 233b3f8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/deploy-latest-on-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,16 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Download Neutron binaries
- name: Download Neutron chain binary
run: |
curl -L -o neutrond https://github.com/neutron-org/neutron/releases/download/v5.0.2/neutrond-linux-amd64
chmod +x neutrond
- name: Checkout Neutron ICQ relayer repository
uses: actions/checkout@v4
with:
repository: neutron-org/neutron-query-relayer
path: ./neutron-query-relayer # directory to checkout the repo into

- name: Deploy latest contracts
env:
Expand All @@ -28,3 +34,7 @@ jobs:
chmod +x ./tools/deployment/setup.sh
bash ./tools/deployment/setup.sh $CONFIG_FILE
- name: Run ICQs setup script
run: |
echo $HYDRO_CONTRACT_ADDRESS
2 changes: 1 addition & 1 deletion tools/deployment/setup_on_mainet.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
set -eux

bash ./setup.sh "./config_mainet.json"
bash tools/deployment/setup.sh "tools/deployment//config_mainet.json"

0 comments on commit 233b3f8

Please sign in to comment.