From 1bc15c4bf55eec7d82361e0343eb608dd9fabd81 Mon Sep 17 00:00:00 2001 From: Damien LACHAUME / PALO-IT Date: Thu, 22 Feb 2024 12:55:44 +0100 Subject: [PATCH] tmp: update yml file --- .github/workflows/test-client.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test-client.yml b/.github/workflows/test-client.yml index db89ceb62a4..8c72a2414cf 100644 --- a/.github/workflows/test-client.yml +++ b/.github/workflows/test-client.yml @@ -48,8 +48,6 @@ jobs: matrix: os: [ ubuntu-22.04, macos-12, windows-latest ] runs-on: ${{ matrix.os }} - env: - CTX_AGGREGATOR_CAPABILITY: false steps: - name: Checkout sources uses: actions/checkout@v3 @@ -78,8 +76,8 @@ jobs: if: matrix.os == 'ubuntu-22.04' || matrix.os == 'macos-12' shell: bash run: | - CTX_AGGREGATOR_CAPABILITY=$(wget -q -O - $AGGREGATOR_ENDPOINT | jq '.capabilities.signed_entity_types | contains(["CardanoTransactions"])') - echo "ctx_enabled=$(echo $CTX_AGGREGATOR_CAPABILITY | cut -c1-7)" >> $GITHUB_OUTPUT + CTX_CAPABILITY=$(wget -q -O - $AGGREGATOR_ENDPOINT | jq '.capabilities.signed_entity_types | contains(["CardanoTransactions"])') + echo "ctx_enabled=$(echo $CTX_CAPABILITY | cut -c1-7)" >> $GITHUB_OUTPUT - name: Prepare environment variable for Cardano transactions aggregator capability (windows-latest) id: aggregator_capability_windows @@ -87,8 +85,8 @@ jobs: shell: bash run: | aria2c -o aggregator_capabilities.json $AGGREGATOR_ENDPOINT - CTX_AGGREGATOR_CAPABILITY=$(jq '.capabilities.signed_entity_types | contains(["CardanoTransactions"])' aggregator_capabilities.json) - echo "ctx_enabled=$(echo $CTX_AGGREGATOR_CAPABILITY | cut -c1-7)" >> $GITHUB_OUTPUT + CTX_CAPABILITY=$(jq '.capabilities.signed_entity_types | contains(["CardanoTransactions"])' aggregator_capabilities.json) + echo "ctx_enabled=$(echo $CTX_CAPABILITY | cut -c1-7)" >> $GITHUB_OUTPUT - name: Checkout binary uses: dawidd6/action-download-artifact@v2