Skip to content

Commit 0822b1b

Browse files
Fix .env missing from symfony.yml
1 parent 6ba8ca1 commit 0822b1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/symfony.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
php-version: '8.4'
3131
- uses: actions/checkout@v4
3232
- name: Copy .env.test.local
33-
run: php -r "file_exists('.env.test.local') || copy('.env.example', '.env.test.local');"
33+
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
3434
- name: Cache Composer packages
3535
id: composer-cache
3636
uses: actions/cache@v3

0 commit comments

Comments
 (0)