Skip to content

Commit 838fee9

Browse files
committed
Fix installation on CI
1 parent ac8cc35 commit 838fee9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/psalm.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ jobs:
2727
key: composer-${{ hashFiles('composer.lock') }}
2828

2929
- name: Run composer install
30-
run: composer install -n --prefer-dist
30+
run: |
31+
composer config "http-basic.nova.laravel.com" "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_4_LICENSE_KEY }}"
32+
composer install -n --prefer-dist
3133
3234
- name: Run Psalm
3335
run: ./vendor/bin/psalm --shepherd

0 commit comments

Comments
 (0)