From a8568bff8eaeeec6aa7a359e68014627a0c458b6 Mon Sep 17 00:00:00 2001 From: Grzegorz Godlewski Date: Tue, 16 Jul 2024 15:59:44 +0200 Subject: [PATCH] build: use correct payment network when doing the market scan --- .github/actions/prepare-tests/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/prepare-tests/action.yml b/.github/actions/prepare-tests/action.yml index f164edcc3..70ee0abc8 100644 --- a/.github/actions/prepare-tests/action.yml +++ b/.github/actions/prepare-tests/action.yml @@ -63,7 +63,7 @@ runs: - name: Run a preliminary scan of offers shell: bash run: | - docker exec -t docker-requestor-1 /bin/sh -c "npx --no-progress --yes @golem-sdk/cli market scan -k try_golem --subnet-tag $YAGNA_SUBNET" + docker exec -t docker-requestor-1 /bin/sh -c "npx --no-progress --yes @golem-sdk/cli market scan -k try_golem --subnet-tag $YAGNA_SUBNET --payment-network $PAYMENT_NETWORK" - name: List down sessions seen on that requestor shell: bash @@ -77,4 +77,4 @@ runs: - name: Run a secondary scan of offers shell: bash run: | - docker exec -t docker-requestor-1 /bin/sh -c "npx --no-progress --yes @golem-sdk/cli market scan -k try_golem --subnet-tag $YAGNA_SUBNET" + docker exec -t docker-requestor-1 /bin/sh -c "npx --no-progress --yes @golem-sdk/cli market scan -k try_golem --subnet-tag $YAGNA_SUBNET --payment-network $PAYMENT_NETWORK"