File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 62
62
name : ${{ matrix.name }}
63
63
steps :
64
64
- name : Set environment variables
65
- run : echo "${{ matrix.env }}" >> $GITHUB_ENV
65
+ run : |
66
+ echo "${{ matrix.env }}" >> $GITHUB_ENV
67
+ echo "echo JOBID=`echo ${{matrix.name }} | base64`" >> $GITHUB_ENV
66
68
- name : apt refresh
67
69
run : sudo apt-get -o Acquire::Retries=5 update
68
70
- name : Install prerequisites
@@ -92,14 +94,14 @@ jobs:
92
94
- uses : actions/upload-artifact@v3
93
95
if : failure()
94
96
with :
95
- name : config.log-${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT }
97
+ name : config.log-${{ env.JOBID } }
96
98
path : |
97
99
/home/runner/build/**/config.log
98
100
- name : Build and test
99
101
run : ./test/travis_run_linux.sh
100
102
- uses : actions/upload-artifact@v3
101
103
if : failure()
102
104
with :
103
- name : error_log-${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT }
105
+ name : error_log-${{ env.JOBID } }
104
106
path : test/perl-framework/t/logs/error_log
105
107
You can’t perform that action at this time.
0 commit comments