2022-09-10 21:38:10 +00:00
|
|
|
#!/bin/sh -l
|
|
|
|
if [ "$IS_REVIEW_APP" = "true" ]; then
|
2022-09-10 22:56:55 +00:00
|
|
|
git config --global user.name 'Dokku Bot'
|
|
|
|
git config --global user.email no-reply@dokku.com
|
|
|
|
|
2022-09-10 22:02:11 +00:00
|
|
|
echo "-----> Purging repo cache"
|
2022-09-10 21:53:28 +00:00
|
|
|
ssh "$SSH_REMOTE" -- repo:purge-cache "$APP_NAME"
|
|
|
|
|
2022-09-10 22:04:40 +00:00
|
|
|
echo "-----> Setting the test domain name"
|
2022-09-10 22:09:06 +00:00
|
|
|
ssh "$SSH_REMOTE" -- domains:set "$APP_NAME" "$APP_NAME.dokku.net"
|
2022-09-10 22:04:40 +00:00
|
|
|
|
2022-09-10 22:56:55 +00:00
|
|
|
echo "-----> Ensure test includes vendored app-nginx.conf.sigil"
|
|
|
|
cp conf/app-nginx.conf.sigil app-nginx.conf.sigil
|
|
|
|
git add app-nginx.conf.sigil
|
|
|
|
git commit -qm "feat: specify custom app-nginx.conf.sigil"
|
|
|
|
|
|
|
|
echo "-----> Ensure test includes vendored mime.types"
|
|
|
|
cp conf/mime.types mime.types
|
|
|
|
git add mime.types
|
|
|
|
git commit -qm "feat: specify custom mime.types"
|
|
|
|
|
2022-09-10 22:02:11 +00:00
|
|
|
echo "-----> Setting the buildpack to the current commit"
|
2022-09-10 21:38:10 +00:00
|
|
|
echo "https://github.com/${GITHUB_REPOSITORY}.git#$GITHUB_SHA" > .buildpacks
|
|
|
|
git add .buildpacks
|
2022-09-10 21:58:38 +00:00
|
|
|
git commit -qm "feat: specify $GITHUB_SHA as buildpack"
|
2022-09-10 21:38:10 +00:00
|
|
|
fi
|