From 4996706f0ac4adadda073b24f5c5ee67946b7f4e Mon Sep 17 00:00:00 2001 From: Matthew Poulter Date: Tue, 6 Apr 2021 13:08:45 +0200 Subject: [PATCH] Fix Nova authentication. --- .github/workflows/run-tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index ca52647..8491c06 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -52,10 +52,9 @@ jobs: - name: Install dependencies run: | + composer config "http-basic.nova.laravel.com" "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_PASSWORD }}" composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update composer update --${{ matrix.stability }} --prefer-dist --no-interaction - env: - COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }} - name: Execute tests run: vendor/bin/phpunit