diff --git a/.github/workflows/deploy-latest-on-testnet.yml b/.github/workflows/deploy-latest-on-testnet.yml index 80ec9808..3683af3e 100644 --- a/.github/workflows/deploy-latest-on-testnet.yml +++ b/.github/workflows/deploy-latest-on-testnet.yml @@ -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: @@ -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 \ No newline at end of file diff --git a/tools/deployment/setup_on_mainet.sh b/tools/deployment/setup_on_mainet.sh index 14b5fe6d..d087a10f 100644 --- a/tools/deployment/setup_on_mainet.sh +++ b/tools/deployment/setup_on_mainet.sh @@ -1,4 +1,4 @@ #!/bin/bash set -eux -bash ./setup.sh "./config_mainet.json" \ No newline at end of file +bash tools/deployment/setup.sh "tools/deployment//config_mainet.json" \ No newline at end of file