Skip to content

Commit 848e988

Browse files
committed
try fix naming
1 parent 89f9130 commit 848e988

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ jobs:
8989
## Go to workspace given by the runner (this file is generated by the pre-build script)
9090
WORKSPACE=$(cat $GITHUB_WORKFLOW_SHA)/${{ matrix.os }}
9191
echo "WORKSPACE=$WORKSPACE" >> $GITHUB_ENV
92+
echo "BUILDER_OS=${{ matrix.os }}" >> $GITHUB_ENV
9293
9394
if [ ! -d $WORKSPACE ]; then
9495
mkdir -p $WORKSPACE
@@ -342,14 +343,14 @@ jobs:
342343
if: always()
343344
uses: actions/upload-artifact@v4
344345
with:
345-
name: build-logs_${{ matrix.os }}
346+
name: build-logs_${{ env.BUILDER_OS }}
346347
path: |
347348
${{ env.BUILD_DIR }}/make-output.txt
348349
349350
- name: Publish tests logs
350351
if: always()
351352
uses: actions/upload-artifact@v4
352353
with:
353-
name: tests-logs_${{ matrix.os }}
354+
name: tests-logs_${{ env.BUILDER_OS }}
354355
path: |
355356
${{ env.BUILD_DIR }}/tests_results/

0 commit comments

Comments
 (0)