Skip to content

Commit d13e51f

Browse files
committed
Improve the SQLite plugin build command naming
1 parent 5991388 commit d13e51f

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release-prepare.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
git push -f origin "$BRANCH"
106106
107107
- name: Build plugin zip
108-
run: composer run build
108+
run: composer run build-sqlite-plugin-zip
109109

110110
- name: Upload zip to draft release
111111
env:

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The following commands are useful for development and testing:
4545
composer install # Install dependencies
4646
composer run check-cs # Check coding standards (PHPCS)
4747
composer run fix-cs # Auto-fix coding standards (PHPCBF)
48-
composer run build # Build the plugin zip
48+
composer run build-sqlite-plugin-zip # Build the plugin zip
4949

5050
# SQLite driver tests (under packages/mysql-on-sqlite)
5151
cd packages/mysql-on-sqlite

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The following commands are useful for development and testing:
3434
composer install # Install dependencies
3535
composer run check-cs # Check coding standards (PHPCS)
3636
composer run fix-cs # Auto-fix coding standards (PHPCBF)
37-
composer run build # Build the plugin zip
37+
composer run build-sqlite-plugin-zip # Build the plugin zip
3838

3939
# SQLite driver tests (under packages/mysql-on-sqlite)
4040
cd packages/mysql-on-sqlite

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
"fix-cs": [
3737
"@php ./vendor/bin/phpcbf"
3838
],
39-
"build": [
40-
"./bin/build-plugin-zip.sh"
39+
"build-sqlite-plugin-zip": [
40+
"./bin/build-sqlite-plugin-zip.sh"
4141
],
4242
"test": [
4343
"phpunit"

0 commit comments

Comments
 (0)