Skip to content

Commit

Permalink
fix: split steps
Browse files Browse the repository at this point in the history
  • Loading branch information
albttx committed Jan 13, 2025
1 parent 5146d23 commit d5c4cba
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/gentx-atomone-1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,21 @@ jobs:
wget -O /usr/local/bin/atomoned https://github.com/atomone-hub/atomone/releases/download/${VERSION}/atomoned-${VERSION}-linux-amd64
chmod +x /usr/local/bin/atomoned
- name: Collect gentxs
- name: Init DAEMON_HOME
run: |
atomoned init github-ci --chain-id atomone-1
# wget -O $HOME/.atomone/config/genesis.json $GENESIS_URL
- name: Add genesis accounts
run: |
for f in ${GENTX_FILES}; do
ADDR=$(cat $f | jq -r '.body.messages[0].delegator_address')
atomoned genesis add-genesis-account $ADDR 10000000uatomone
done
- name: Collect gentxs
run: |
atomoned genesis collect-gentxs --gentx-dir ./atomone-1/gentx
- name: Validate genesis
Expand Down

0 comments on commit d5c4cba

Please sign in to comment.