Skip to content

Commit b3e3a6e

Browse files
committed
Fix artifact names in check-netlogo
1 parent becb311 commit b3e3a6e

1 file changed

Lines changed: 1 addition & 15 deletions

File tree

check-netlogo/action.yaml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -80,20 +80,6 @@ runs:
8080
artifacts_dir="${RUNNER_TEMP}/check-netlogo"
8181
mkdir -p "${artifacts_dir}"
8282
83-
case ${RUNNER_OS} in
84-
"Windows")
85-
artifacts_dir="${artifacts_dir}/windows"
86-
;;
87-
"macOS")
88-
artifacts_dir="${artifacts_dir}/macos"
89-
;;
90-
"Linux")
91-
artifacts_dir="${artifacts_dir}/linux"
92-
;;
93-
esac
94-
95-
mkdir -p "${artifacts_dir}"
96-
9783
echo "path=${artifacts_dir}" >> "${GITHUB_OUTPUT}"
9884
shell: bash
9985

@@ -223,7 +209,7 @@ runs:
223209
inputs.artifacts != 'false'
224210
uses: actions/upload-artifact@v4
225211
with:
226-
name: experiments-output
212+
name: experiments-output-${{runner.os}}
227213
path: ${{steps.artifacts-dir.outputs.path}}
228214
retention-days: 90
229215
if-no-files-found: warn

0 commit comments

Comments
 (0)