Skip to content
Snippets Groups Projects
Commit 65ecdd20 authored by Jonathan Foucher's avatar Jonathan Foucher
Browse files

fail script if a step fails.

parent ed42dbe5
No related branches found
No related tags found
No related merge requests found
Pipeline #31938 failed
......@@ -12,11 +12,11 @@ git stash
git pull
## Composer
php8.1 /usr/bin/composer install --prefer-dist --no-interaction --optimize-autoloader
php8.1 $(which composer) install --prefer-dist --no-interaction --optimize-autoloader || exit 1
## CSS & JS
npm install
npm run production
npm install || exit 1
npm run production || exit 1
# Get correct version info from git tag and replace into template
VERSION=$(git describe --tags)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment