File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -129,9 +129,9 @@ jobs:
129129 if [ ${#slug_array[@]} -eq 0 ]; then
130130 slug_suffix=""
131131 elif [ ${#slug_array[@]} -le 3 ]; then
132- slug_suffix="-$(IFS=- ; echo "${slug_array[*]}")"
132+ slug_suffix="-$(IFS=_ ; echo "${slug_array[*]}")"
133133 else
134- slug_suffix="-${slug_array[0]}- ${slug_array[1]}- ${slug_array[2]}-etc "
134+ slug_suffix="-${slug_array[0]}_ ${slug_array[1]}_ ${slug_array[2]}_etc "
135135 fi
136136
137137 echo "slug-suffix=$slug_suffix" >> $GITHUB_OUTPUT
@@ -141,6 +141,6 @@ jobs:
141141 - name : Upload Artifact for ${{ matrix.version }}
142142 uses : actions/upload-artifact@v4
143143 with :
144- name : Minecraft-Mod-Language-Package-${{ matrix.version }}-PR${{ github.event.pull_request.number || 'manual' }}${{ steps.extract-slugs.outputs.slug-suffix }}
144+ name : Minecraft-Mod-Language-Package-${{ matrix.version }}-PR- ${{ github.event.pull_request.number || 'manual' }}${{ steps.extract-slugs.outputs.slug-suffix }}
145145 path : Minecraft-Mod-Language-Package-${{ matrix.version }}/*
146146 if : steps.check-changes.outputs.changed == 'true' || github.event_name == 'workflow_dispatch'
You can’t perform that action at this time.
0 commit comments