From b423b299a3dfc1f8f191edc3b79882a3742e6535 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Thu, 19 Oct 2023 08:39:15 +0000 Subject: [PATCH] ci(node-only): fix continuation condition --- --- a/.github/workflows/node-only-update.yml +++ b/.github/workflows/node-only-update.yml @@ -166,7 +166,7 @@ - name: Run Parallel tests before Node Parachain upgrade working-directory: ${{ matrix.mainnet_branch }}/tests - if: success() || failure() + if: success() run: | yarn yarn add mochawesome @@ -195,7 +195,7 @@ snippet:(import 'baedeker-library/ops/rewrites.libsonnet').rewriteNodePaths({'bin/unique':{dockerImage:'${{ steps.mainnet.outputs.name }}'}}) - name: Ensure network is alive - if: success() || failure() # run this step even if previous step failed + if: success() run: | ./tests/scripts/wait_for_first_block.sh env: -- gitstuff