diff --git a/.github/actions/setup-vegawallet/action.yml b/.github/actions/setup-vegawallet/action.yml index 015f5133a..5792248a8 100644 --- a/.github/actions/setup-vegawallet/action.yml +++ b/.github/actions/setup-vegawallet/action.yml @@ -5,7 +5,7 @@ inputs: description: 'Wallet password' capsule: description: 'Is Capsule network used' - default: false + default: 'false' runs: using: 'composite' steps: @@ -29,17 +29,17 @@ runs: shell: bash run: vegawallet key generate -w UI_Trading_Test -p ./passphrase --home ~/.vegacapsule/testnet/wallet - - name: Import fairground network + - name: Import network shell: bash - if: ${{ inputs.capsule==false }} + if: ${{ inputs.capsule=='false' }} run: vegawallet network import --from-url="https://raw.githubusercontent.com/vegaprotocol/networks-internal/master/stagnet3/stagnet3.toml" --force --home ~/.vegacapsule/testnet/wallet - name: Start service using fairground network shell: bash - if: ${{ inputs.capsule==false }} + if: ${{ inputs.capsule=='false' }} run: vegawallet service run --network stagnet3 --automatic-consent --no-version-check --home ~/.vegacapsule/testnet/wallet & - name: Start service using capsule network shell: bash - if: ${{ inputs.capsule==true }} + if: ${{ inputs.capsule=='true' }} run: vegawallet service run --network DV --automatic-consent --home ~/.vegacapsule/testnet/wallet & diff --git a/.github/workflows/capsule-cypress-manual-trigger.yml b/.github/workflows/capsule-cypress-manual-trigger.yml index 16cd0db2f..7a393748d 100644 --- a/.github/workflows/capsule-cypress-manual-trigger.yml +++ b/.github/workflows/capsule-cypress-manual-trigger.yml @@ -36,7 +36,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Set tags - run: echo TAGS="--env.grepTags [ ${{ github.event.inputs.tags }} ]" >> $GITHUB_ENV + run: echo TAGS="--env.grepTags '[ ${{ github.event.inputs.tags }} ]'" >> $GITHUB_ENV - name: Set --skip-nx-cache flag if: ${{ github.event.inputs.skip-nx-cache == 'true' }} diff --git a/.github/workflows/capsule-cypress-night-run.yml b/.github/workflows/capsule-cypress-night-run.yml index 17a97427d..052538828 100644 --- a/.github/workflows/capsule-cypress-night-run.yml +++ b/.github/workflows/capsule-cypress-night-run.yml @@ -15,5 +15,5 @@ jobs: project: '[console-lite-e2e, explorer-e2e, liquidity-provisioning-dashboard-e2e, stats-e2e, token-e2e, trading-e2e]' vega-version: 'v0.58.0' gobin: /home/runner/go/bin - tags: '@smoke, @regression, @slow' + tags: --env.grepTags '[ @smoke, @regression, @slow ]' night-run: true