File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -69,10 +69,20 @@ jobs:
6969
7070 - name : Install that code using Composer rigged to look in the parent directory
7171 working-directory : rollbar-test-app
72+ continue-on-error : true
7273 run : |
7374 composer config repositories.local '{"type":"path", "url":".."}'
7475 composer require rollbar/rollbar-laravel
75- composer update psr/log
76+
77+ - name : Try to resolve requirements into an installable set of packages
78+ working-directory : rollbar-test-app
79+ # This adds time, so only run this if the previous step fails.
80+ if : ${{ failure() }}
81+ run : composer update
82+
83+ - name : Setup .env
84+ working-directory : rollbar-test-app
85+ run : |
7686 echo "ROLLBAR_TOKEN=${ROLLBAR_TOKEN}" >> .env
7787 echo "GITHUB_RUN_ID=${GITHUB_RUN_ID}" >> .env
7888 chmod 400 .env
You can’t perform that action at this time.
0 commit comments