We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 945f7c8 commit c68b84aCopy full SHA for c68b84a
1 file changed
deploy.sh
@@ -64,7 +64,8 @@ if [ -z "$INPUT_ARCHIVE" ]; then
64
cd "$DIR_TO_ZIP";
65
fi
66
67
- zip "$INPUT_CUSTOM_ZIP_FLAGS" -r --quiet "$ZIP_FILENAME" . -x "@$EXCLUSION_FILE"
+ # shellcheck disable=SC2086
68
+ zip $INPUT_CUSTOM_ZIP_FLAGS -r --quiet "$ZIP_FILENAME" . -x "@$EXCLUSION_FILE"
69
if [ ! -f "$ZIP_FILENAME" ]; then
70
echo "::error::$ZIP_FILENAME was not generated properly (zip generation failed)."
71
exit 1;
0 commit comments