Skip to content

Commit

Permalink
test..
Browse files Browse the repository at this point in the history
  • Loading branch information
MusicDin committed Mar 18, 2024
1 parent 1bc8d5e commit 8bfd78c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/actions/image-upload/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,14 @@ runs:
# Replicate destination directory structure.
SRC_DIR="${HOME}/upload"
mkdir -p "${SRC_DIR}/${DST_DIR}/${VERSION}"
mv "${IMG_DIR}/*" "${SRC_DIR}/${DST_DIR}/${VERSION}/"
echo "==> IMG_DIR: ${IMG_DIR}"
ls ${IMG_DIR}
echo "==> DST_DIR: ${SRC_DIR}/${DST_DIR}/${VERSION}/"
ls ${SRC_DIR}/${DST_DIR}/${VERSION}/
mv ${IMG_DIR}/* "${SRC_DIR}/${DST_DIR}/${VERSION}/"
echo "==> SRC_DIR: ${SRC_DIR}"
echo "==> VERSION: ${VERSION}"
Expand Down

0 comments on commit 8bfd78c

Please sign in to comment.