We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f386081 commit 2e276c8Copy full SHA for 2e276c8
.github/workflows/laravel.yml
@@ -16,7 +16,9 @@ jobs:
16
- name: Copy .env
17
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
18
- name: Install Dependencies
19
- run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
+ 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
22
- name: Generate key
23
run: php artisan key:generate
24
- name: Directory Permissions
0 commit comments