Revert "Remove --site option"
continuous-integration/drone/push Build is passing Details

This reverts commit 045f85cd2b.
main
mat ess 2022-12-04 20:07:38 -05:00
parent 045f85cd2b
commit c5513a13c3
1 changed files with 10 additions and 4 deletions

View File

@ -41,10 +41,16 @@ then
NETLIFY_DEPLOY_OPTIONS="${NETLIFY_DEPLOY_OPTIONS} --debug"
fi
NETLIFY_AUTH="--auth $PLUGIN_TOKEN"
echo "> Deploying on Netlify..." &&
echo "> (Using options $NETLIFY_DEPLOY_OPTIONS)" &&
netlify deploy $NETLIFY_AUTH $NETLIFY_DEPLOY_OPTIONS --message "$DRONE_COMMIT_MESSAGE";
if [ -n "$PLUGIN_SITE" ]
then
NETLIFY_SITE="--auth $PLUGIN_TOKEN --site $PLUGIN_SITE"
echo "> Deploying on Netlify…" &&
echo "> (Using option $NETLIFY_DEPLOY_OPTIONS)" &&
netlify deploy $NETLIFY_SITE $NETLIFY_DEPLOY_OPTIONS --message "$DRONE_COMMIT_MESSAGE";
else
echo "> Error! site (site ID or name) and token are required"
exit 1
fi
rc=$?;
if [[ $rc != 0 ]]