We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 708ddb3 commit 3aa243bCopy full SHA for 3aa243b
1 file changed
.github/workflows/run-bench.yml
@@ -107,11 +107,12 @@ jobs:
107
id: log-artifact-name
108
run: |
109
NAME=$(echo "${{ inputs.benchmark }}" | sed -r 's/[\/]+/_/g')
110
+ echo "clean_name=$NAME" >> $GITHUB_OUTPUT
111
echo "artifact_name=logs_$NAME" >> $GITHUB_OUTPUT
112
- name: Upload results
113
uses: actions/upload-artifact@v4
114
with:
- name: results-${{ env.NAME }}
115
+ name: results-${{ steps.log-artifact-name.outputs.clean_name }}
116
path: benchmarks/out/results/${{ inputs.benchmark }}.json
117
- name: Upload logs
118
0 commit comments