Skip to content

Commit

Permalink
ci(github): fix join action workdir (#2224)
Browse files Browse the repository at this point in the history
Fixes homedir which is now repo root.

issue: #2175
  • Loading branch information
corverroos authored Oct 18, 2024
1 parent d0a3e50 commit c49155b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci-join.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,15 @@ jobs:
go install github.com/omni-network/omni/cli/cmd/omni
# init halo and geth
~/go/bin/omni operator init-nodes --network=omega --moniker=ci-nightly --home=$(pwd)
~/go/bin/omni operator init-nodes --network=omega --moniker=ci-nightly --home=$(pwd)/join
# start halo and geth
cd $(pwd)/join
docker compose up -d
- name: Wait for sync
run: |
cd $(pwd)/join
t0=$(date +%s) # Record the start time
while true; do
Expand Down Expand Up @@ -69,4 +71,4 @@ jobs:
- name: Stop the node
if: always()
run: docker compose down
run: cd $(pwd)/join && docker compose down

0 comments on commit c49155b

Please sign in to comment.