Skip to content

Commit 3d8a256

Browse files
fix
Created using spr 1.3.7
1 parent 2988ddc commit 3d8a256

File tree

1 file changed

+1
-3
lines changed
  • .github/workflows/unprivileged-download-artifact

1 file changed

+1
-3
lines changed

.github/workflows/unprivileged-download-artifact/action.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,7 @@ runs:
9696
- shell: bash
9797
if: steps.artifact-url.outputs.names != ''
9898
run: |
99-
ls
10099
artifact_names=(${{ steps.artifact-url.outputs.names }})
101100
for name in "${artifact_names[@]}"; do
102-
ls
103-
unzip "${artifact_names[$i]}.zip"
101+
unzip "${name}.zip"
104102
done

0 commit comments

Comments
 (0)