Skip to content

Commit c142fc7

Browse files
committed
ci: Drop post-autoload-dump scripts (not needed for CI checks)
1 parent 88ec00a commit c142fc7

3 files changed

Lines changed: 0 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,6 @@ jobs:
6262
- name: Generate app key
6363
run: php -r "file_put_contents('.env', preg_replace('/^APP_KEY=.*/m', 'APP_KEY=base64:' . base64_encode(random_bytes(32)), file_get_contents('.env')));"
6464

65-
- name: Run post-install scripts
66-
run: composer run-script post-autoload-dump --ansi --no-interaction
67-
6865
- name: Run Laravel Pint (Code Style)
6966
run: vendor/bin/pint --test --ansi
7067

@@ -137,9 +134,6 @@ jobs:
137134
- name: Generate app key
138135
run: php -r "file_put_contents('.env', preg_replace('/^APP_KEY=.*/m', 'APP_KEY=base64:' . base64_encode(random_bytes(32)), file_get_contents('.env')));"
139136

140-
- name: Run post-install scripts
141-
run: composer run-script post-autoload-dump --ansi --no-interaction
142-
143137
- name: Build frontend assets
144138
run: npm run build
145139

.github/workflows/security.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,6 @@ jobs:
8080
- name: Generate app key
8181
run: php -r "file_put_contents('.env', preg_replace('/^APP_KEY=.*/m', 'APP_KEY=base64:' . base64_encode(random_bytes(32)), file_get_contents('.env')));"
8282

83-
- name: Run post-install scripts
84-
run: composer run-script post-autoload-dump --ansi --no-interaction
85-
8683
- name: Run Composer Audit
8784
run: composer audit --ansi
8885
continue-on-error: true

.github/workflows/supply-chain.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ jobs:
139139
rm -rf vendor
140140
composer install --no-interaction --prefer-dist --no-progress --no-scripts
141141
php -r "file_put_contents('.env', preg_replace('/^APP_KEY=.*/m', 'APP_KEY=base64:' . base64_encode(random_bytes(32)), file_get_contents('.env')));"
142-
composer run-script post-autoload-dump --ansi --no-interaction
143142
echo "✅ Fresh install successful"
144143
145144
- name: Setup Node.js

0 commit comments

Comments
 (0)