File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 5959 ${{ runner.os }}-
6060
6161 - name : Setup Composer Token
62- if : secrets.COMPOSER_TOKEN
63- run : composer config github-oauth.github.com ${{ secrets.COMPOSER_TOKEN }}
62+ run : |
63+ if [ ! -z "${{ secrets.COMPOSER_TOKEN }}"]; then
64+ composer config github-oauth.github.com ${{ secrets.COMPOSER_TOKEN }}
65+ fi
6466
6567 - name : Install Project Dependencies
6668 run : composer install --prefer-dist --no-interaction --no-ansi --no-progress --no-suggest
Original file line number Diff line number Diff line change 5454 ${{ runner.os }}-
5555
5656 - name : Setup Composer Token
57- if : secrets.COMPOSER_TOKEN
58- run : composer config github-oauth.github.com ${{ secrets.COMPOSER_TOKEN }}
57+ run : |
58+ if [ ! -z "${{ secrets.COMPOSER_TOKEN }}"]; then
59+ composer config github-oauth.github.com ${{ secrets.COMPOSER_TOKEN }}
60+ fi
5961
6062 - name : Install Project Dependencies
6163 run : composer install --prefer-dist --no-interaction --no-ansi --no-progress --no-suggest
You can’t perform that action at this time.
0 commit comments