Skip to content

Commit

Permalink
convert GH expr syntax to bash array
Browse files Browse the repository at this point in the history
  • Loading branch information
oberon-manjaro authored Dec 14, 2023
1 parent a81812a commit d8b519e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,9 @@ runs:
echo "check file source"
ls .
for f in ${{ steps.upload-prepare.outputs.upload-files[@] }}; do
echo "${{ steps.upload-prepare.outputs.upload-files }}"
upload_files=( "${{ steps.upload-prepare.outputs.upload-files }}" )
for f in ${upload_files[@]}; do
echo "moving ${f}"
mv ${f} "${{ inputs.edition }}/${{ inputs.version }}/"
done
Expand Down

0 comments on commit d8b519e

Please sign in to comment.