Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/10.3' into 11.x
Browse files Browse the repository at this point in the history
  • Loading branch information
fashxp committed Jan 31, 2023
2 parents 1ae5eb2 + 09457e9 commit eaeb5c8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/pimcore-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,14 @@ jobs:
-e PIMCORE_INSTALL_MYSQL_PASSWORD=pimcore \
-- \
php vendor/bin/pimcore-install -n --mysql-host-socket=db --mysql-database=pimcore
# Change owner
sudo chown -R www-data .
# Check if website is reachable
response=$(docker-compose exec -T -- php bash -c 'curl -s "nginx:80"')
if [[ ! $response =~ "Satisfaction" ]]; then
echo "Install failed, skipping build"
exit 1;
fi

0 comments on commit eaeb5c8

Please sign in to comment.