Skip to content

Commit

Permalink
fixed env var echo bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ItayLevyOfficial committed Aug 20, 2023
1 parent fbd5146 commit c9bde35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ jobs:
run: |
screen -dmS hub-session /usr/local/bin/dymd start --home "$ROLLER_CONFIG_PATH/local-hub"
sleep 5
HUB_PID=$(pgrep -f 'dymd start --home')
HUB_PID=$(pgrep -f 'dymd start --home' | head -n 1)
echo "Captured PID: $HUB_PID"
echo "HUB_PID=$HUB_PID" >> $GITHUB_ENV
- name: Fund the RollApp addresses
Expand Down

0 comments on commit c9bde35

Please sign in to comment.