Add building web assets to CI/CD
Some checks failed
Create Docker Image / Test Application (x86_64) (push) Failing after 5s
Create Docker Image / Build Docker Image (arm64) (push) Has been skipped
Create Docker Image / Build Docker Image (x86_64) (push) Has been skipped
Create Docker Image / Final Docker Image Manifest (push) Has been skipped

This commit is contained in:
Deon George 2025-01-03 15:33:14 +11:00
parent 831cf2b1ee
commit 0f8839ea0c

View File

@ -36,10 +36,7 @@ jobs:
mv .env.testing .env
# Install Composer and project dependencies.
mkdir -p ${COMPOSER_HOME}
if [ -n "${{ secrets.COMPOSER_GITHUB_TOKEN }}" ]; then echo ${{ secrets.COMPOSER_GITHUB_TOKEN }} > ${COMPOSER_HOME}/auth.json; fi
echo "Compose HOME [${COMPOSER_HOME}]"
ls -al ${COMPOSER_HOME}
cat ${COMPOSER_HOME}/auth.json
if [ -n "${{ secrets.COMPOSER_GITHUB_TOKEN }}" ]; then composer config github-oauth.github.com token ${{ secrets.COMPOSER_GITHUB_TOKEN }}; fi
composer install
# Generate an application key. Re-cache.
php artisan key:generate