Skip to content

Commit a9f5f13

Browse files
CI: Normalization (BASE_SIGN) (#18)
1 parent d71d7a7 commit a9f5f13

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/package-verification.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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
@@ -89,5 +92,5 @@ jobs:
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 }}/"

0 commit comments

Comments
 (0)