Skip to content

Commit 2e276c8

Browse files
authored
Added composer config for Laravel Nova
1 parent f386081 commit 2e276c8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/laravel.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ jobs:
1616
- name: Copy .env
1717
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
1818
- name: Install Dependencies
19-
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
19+
run: |
20+
composer config "http-basic.nova.laravel.com" "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_PASSWORD }}"
21+
composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
2022
- name: Generate key
2123
run: php artisan key:generate
2224
- name: Directory Permissions

0 commit comments

Comments
 (0)