Skip to content

Commit

Permalink
sudo chmod
Browse files Browse the repository at this point in the history
  • Loading branch information
ASoTNetworks committed Aug 2, 2023
1 parent d864e80 commit afa44e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/export-rs-testnet-genesis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ jobs:
echo "RUNNING_VERSION=$RUNNING_VERSION" >> $GITHUB_ENV
- name: Download binary from cosmos/gaia repo
run: |
sudo wget https://github.com/cosmos/gaia/releases/download/${{ env.RUNNING_VERSION }}/gaiad-${{ env.RUNNING_VERSION }}-linux-amd64 -O /usr/local/bin/gaiad
chmod +x /usr/local/bin/gaiad
sudo wget -nv https://github.com/cosmos/gaia/releases/download/${{ env.RUNNING_VERSION }}/gaiad-${{ env.RUNNING_VERSION }}-linux-amd64 -O /usr/local/bin/gaiad
sudo chmod +x /usr/local/bin/gaiad
- name: Start chain
env:
NODE_HOME: ~/.gaia
Expand Down Expand Up @@ -102,6 +102,6 @@ jobs:
sed -i -e "/rpc_servers =/ s^= .*^= \"$SYNC_RPC_SERVERS\"^" $NODE_HOME/config/config.toml
sed -i -e "/halt-height =/ s^= .*^= \"$HALT_HEIGHT\"^" $NODE_HOME/config/app.toml
echo "Replaceing genesis..."
wget $GENESIS_URL -O genesis.json
wget -nv $GENESIS_URL -O genesis.json
mv genesis.json $NODE_HOME/config/genesis.json
$CHAIN_BINARY start --x-crisis-skip-assert-invariants --home $NODE_HOME > ~/artifact/gaiad_joining_provider.log

0 comments on commit afa44e7

Please sign in to comment.