Skip to content

Commit e6ee435

Browse files
committed
chore: apply changes based on PR review feedback
1 parent 633de89 commit e6ee435

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/nightly-backward-compatibility.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
description: "Cardano node version used in e2e"
1717
required: true
1818
type: string
19-
default: "10.1.1"
19+
default: "10.1.2"
2020

2121
jobs:
2222
prepare-env-variables:
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
if [[ "${{ github.event_name }}" == "schedule" ]]; then
3232
echo "total_releases=3" >> $GITHUB_OUTPUT
33-
echo 'cardano_node_version=["10.1.1"]' >> $GITHUB_OUTPUT
33+
echo 'cardano_node_version=["10.1.2"]' >> $GITHUB_OUTPUT
3434
else
3535
echo "total_releases=${{ inputs.total-releases }}" >> $GITHUB_OUTPUT
3636
echo "cardano_node_version=[\"${{ inputs.cardano-node-version }}\"]" >> $GITHUB_OUTPUT
@@ -121,11 +121,11 @@ jobs:
121121
|| (echo "SUCCESS=false" >> $GITHUB_ENV && exit 1)
122122
123123
- name: Define the JSON file name for the test result
124-
if: always()
124+
if: success() || failure()
125125
run: echo "RESULT_FILE_NAME=e2e-test-result-run_${{ github.run_number }}-attempt_${{ github.run_attempt }}-tag_${{ matrix.tag }}-node-${{ matrix.node }}-cardano-${{ matrix.cardano_node_version }}-run_id_${{ matrix.run_id }}" >> $GITHUB_ENV
126126

127127
- name: Write test result JSON
128-
if: always()
128+
if: success() || failure()
129129
run: |
130130
AGGREGATOR_TAG="unstable"
131131
SIGNER_TAG="unstable"
@@ -154,7 +154,7 @@ jobs:
154154
> ./${{ env.RESULT_FILE_NAME }}.json
155155
156156
- name: Upload test result JSON
157-
if: always()
157+
if: success() || failure()
158158
uses: actions/upload-artifact@v4
159159
with:
160160
name: ${{ env.RESULT_FILE_NAME }}
@@ -177,7 +177,7 @@ jobs:
177177
summarize-test-results:
178178
runs-on: ubuntu-22.04
179179
needs: [e2e]
180-
if: always()
180+
if: success() || failure()
181181

182182
steps:
183183
- name: Download all test result artifacts

0 commit comments

Comments
 (0)