From c03a67190f075afa858762cb0b503e74d2eae5e4 Mon Sep 17 00:00:00 2001 From: Lucchetto <32309609+Lucchetto@users.noreply.github.com> Date: Sat, 15 Feb 2025 18:20:43 +0100 Subject: [PATCH] Fix create-onnx-runtime-artifact.yml returning wrong artifact-name (#7) Signed-off-by: Lucchetto --- .github/workflows/create-onnx-runtime-artifact.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-onnx-runtime-artifact.yml b/.github/workflows/create-onnx-runtime-artifact.yml index 38a384c..f313dc1 100644 --- a/.github/workflows/create-onnx-runtime-artifact.yml +++ b/.github/workflows/create-onnx-runtime-artifact.yml @@ -95,4 +95,4 @@ jobs: - name: Set outputs id: set-outputs - run: echo "artifact-name=$REPO_NAME_$GITHUB_SHA" >> $GITHUB_OUTPUT + run: echo "artifact-name=${REPO_NAME}_${GITHUB_SHA}" >> $GITHUB_OUTPUT