Skip to content

Commit

Permalink
Fix workflow for nova
Browse files Browse the repository at this point in the history
  • Loading branch information
felixgilles committed Aug 6, 2024
1 parent 2015af5 commit 39618f2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
- name: Add Nova key
run: composer config http-basic.nova.laravel.com $LARAVEL_NOVA_USERNAME $LARAVEL_NOVA_LICENSE_KEY
env:
LARAVEL_NOVA_USERNAME: ${{ secret.LARAVEL_NOVA_USERNAME }}
LARAVEL_NOVA_LICENSE_KEY: ${{ secret.LARAVEL_NOVA_LICENSE_KEY }}
LARAVEL_NOVA_USERNAME: ${{ secrets.LARAVEL_NOVA_USERNAME }}
LARAVEL_NOVA_LICENSE_KEY: ${{ secrets.LARAVEL_NOVA_LICENSE_KEY }}

- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
Expand Down Expand Up @@ -62,8 +62,8 @@ jobs:
- name: Add Nova key
run: composer config http-basic.nova.laravel.com $LARAVEL_NOVA_USERNAME $LARAVEL_NOVA_LICENSE_KEY
env:
LARAVEL_NOVA_USERNAME: ${{ secret.LARAVEL_NOVA_USERNAME }}
LARAVEL_NOVA_LICENSE_KEY: ${{ secret.LARAVEL_NOVA_LICENSE_KEY }}
LARAVEL_NOVA_USERNAME: ${{ secrets.LARAVEL_NOVA_USERNAME }}
LARAVEL_NOVA_LICENSE_KEY: ${{ secrets.LARAVEL_NOVA_LICENSE_KEY }}

- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
Expand Down

0 comments on commit 39618f2

Please sign in to comment.