We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee98bda commit 81aaeceCopy full SHA for 81aaece
1 file changed
.github/workflows/ci_linux.yml
@@ -90,9 +90,9 @@ jobs:
90
run: |
91
SANITIZED_NAME=$(echo '${{ matrix.variance.name }}' | sed 's/[^a-zA-Z0-9.-]/-/g')
92
ARTIFACT_NAME="target_debug-${SANITIZED_NAME}-${{ github.run_id }}"
93
- ARTIFACT_PATH="target/debug" # Define the path consistently
+ ARTIFACT_PATH="target/debug"
94
echo "name=${ARTIFACT_NAME}" >> $GITHUB_OUTPUT
95
- echo "path=${ARTIFACT_PATH}" >> $GITHUB_OUTPUT # Output the path variable
+ echo "path=${ARTIFACT_PATH}" >> $GITHUB_OUTPUT
96
97
- name: Upload build artifacts
98
uses: actions/upload-artifact@v4
@@ -102,7 +102,7 @@ jobs:
102
retention-days: 1
103
104
test:
105
- name: ${{ matrix.variance.name }}
+ name: ${{ matrix.variance.name || 'Tests' }}
106
# Depends on the build job
107
needs: build
108
# Run ONLY IF:
0 commit comments