File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -64,14 +64,17 @@ jobs:
6464 - platform : " alpine"
6565 python : " 3.14"
6666
67+ env :
68+ BASE_SIGN : " ${{ matrix.platform }}-py${{ matrix.python }}"
69+
6770 steps :
6871 - name : Prepare variables
6972 run : |
7073 RUN_CFG__NOW="$(date +'%Y%m%d_%H%M%S')"
7174 echo "RUN_CFG__NOW=$RUN_CFG__NOW" >> $GITHUB_ENV
72- RUN_CFG__LOGS_DIR="logs-${{ matrix.platform }}-py${{ matrix.python }}"
75+ RUN_CFG__LOGS_DIR="logs-${{ env.BASE_SIGN }}"
7376 echo "RUN_CFG__LOGS_DIR=$RUN_CFG__LOGS_DIR" >> $GITHUB_ENV
74- RUN_CFG__DOCKER_IMAGE_NAME="tests-${{ matrix.platform }}-py${{ matrix.python }}"
77+ RUN_CFG__DOCKER_IMAGE_NAME="tests-${{ env.BASE_SIGN }}"
7578 echo "RUN_CFG__DOCKER_IMAGE_NAME=$RUN_CFG__DOCKER_IMAGE_NAME" >> $GITHUB_ENV
7679 echo "---------- [$GITHUB_ENV]"
7780 cat $GITHUB_ENV
8992 uses : actions/upload-artifact@v7
9093 if : always() # IT IS IMPORTANT!
9194 with :
92- name : testgres.common--test_logs--${{ env.RUN_CFG__NOW }}-${{ matrix.platform }}-py${{ matrix.python }}-id${{ github.run_id }}
95+ name : testgres.common--test_logs--${{ env.RUN_CFG__NOW }}-${{ env.BASE_SIGN }}-id${{ github.run_id }}
9396 path : " ${{ env.RUN_CFG__LOGS_DIR }}/"
You can’t perform that action at this time.
0 commit comments