Build system: Allow pre-release dependencies when creating pre-releases
This commit is contained in:
parent
feba0b32df
commit
6dd6da655f
1 changed files with 7 additions and 0 deletions
|
@ -31,6 +31,13 @@ composer require --no-update \
|
|||
"picocms/pico-deprecated $VERSION_FULL@$VERSION_STABILITY"
|
||||
echo
|
||||
|
||||
# set minimum stability
|
||||
if [ "$VERSION_STABILITY" != "stable" ]; then
|
||||
echo "Setting minimum stability to '$VERSION_STABILITY'..."
|
||||
composer config "minimum-stability" "$VERSION_STABILITY"
|
||||
composer config "prefer-stable" "true"
|
||||
fi
|
||||
|
||||
# install dependencies
|
||||
echo "Running \`composer install\`..."
|
||||
composer install --no-suggest --prefer-dist --no-dev --optimize-autoloader
|
||||
|
|
Loading…
Add table
Reference in a new issue