: A previous stage that should have generated or copied the .zip files into ../stage/components/ either failed or was skipped. The unzip stage runs assuming those files exist, but they don’t.
When this error appears in a "Stage Component" logs, it often points to an mismatch. : A previous stage that should have generated or copied the
unzip *.zip .. stage components
The -- tells unzip to treat everything after as filenames, not options. Then *.zip is expanded by the shell. The destination path is quoted. : A previous stage that should have generated or copied the