16
16
description : " Cardano node version used in e2e"
17
17
required : true
18
18
type : string
19
- default : " 10.1.1 "
19
+ default : " 10.1.2 "
20
20
21
21
jobs :
22
22
prepare-env-variables :
30
30
run : |
31
31
if [[ "${{ github.event_name }}" == "schedule" ]]; then
32
32
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
34
34
else
35
35
echo "total_releases=${{ inputs.total-releases }}" >> $GITHUB_OUTPUT
36
36
echo "cardano_node_version=[\"${{ inputs.cardano-node-version }}\"]" >> $GITHUB_OUTPUT
@@ -121,11 +121,11 @@ jobs:
121
121
|| (echo "SUCCESS=false" >> $GITHUB_ENV && exit 1)
122
122
123
123
- name : Define the JSON file name for the test result
124
- if : always ()
124
+ if : success() || failure ()
125
125
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
126
126
127
127
- name : Write test result JSON
128
- if : always ()
128
+ if : success() || failure ()
129
129
run : |
130
130
AGGREGATOR_TAG="unstable"
131
131
SIGNER_TAG="unstable"
@@ -154,7 +154,7 @@ jobs:
154
154
> ./${{ env.RESULT_FILE_NAME }}.json
155
155
156
156
- name : Upload test result JSON
157
- if : always ()
157
+ if : success() || failure ()
158
158
uses : actions/upload-artifact@v4
159
159
with :
160
160
name : ${{ env.RESULT_FILE_NAME }}
@@ -177,7 +177,7 @@ jobs:
177
177
summarize-test-results :
178
178
runs-on : ubuntu-22.04
179
179
needs : [e2e]
180
- if : always ()
180
+ if : success() || failure ()
181
181
182
182
steps :
183
183
- name : Download all test result artifacts
0 commit comments