Skip to content

Commit

Permalink
create image dir if needed
Browse files Browse the repository at this point in the history
  • Loading branch information
demarey authored Oct 11, 2024
1 parent bf222f6 commit 418170b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ runs:
curl -L ${URL} -o pharo-image.zip
unzip pharo-image.zip -d image
rm -f pharo-image.zip
mkdir -p ${{ steps.vars.outputs.IMAGE_DIR }}
find image -name '*.image' -exec mv '{}' ${{ steps.vars.outputs.IMAGE_DIR }}/${{ inputs.imageName }}.image \;
find image -name '*.changes' -exec mv '{}' ${{ steps.vars.outputs.IMAGE_DIR }}/${{ inputs.imageName }}.changes \;
mv image/*.sources ${{ steps.vars.outputs.IMAGE_DIR }}
Expand Down

0 comments on commit 418170b

Please sign in to comment.