Skip to content

Commit

Permalink
Add MySQL to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Joaquel committed Jun 1, 2024
1 parent 393f479 commit d6e6c52
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@ jobs:
./spcomp -E textstore.sp -o ../plugins/textstore.smx
./spcomp -E textstore_defaults.sp -o ../plugins/textstore_defaults.smx
./spcomp -E textstore_generic.sp -o ../plugins/textstore_generic.smx
./spcomp textstore_sqlite.sp -o ../plugins/textstore_sqlite.smx
./spcomp -E textstore_sqlite.sp -o ../plugins/textstore_sqlite.smx
./spcomp -E textstore_mysql.sp -o ../plugins/textstore_mysql.smx
./spcomp -E textstore_tf2.sp -o ../plugins/textstore_tf2.smx
1 change: 1 addition & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
./spcomp textstore_defaults.sp -o ../plugins/textstore_defaults.smx
./spcomp textstore_generic.sp -o ../plugins/textstore_generic.smx
./spcomp textstore_sqlite.sp -o ../plugins/textstore_sqlite.smx
./spcomp textstore_mysql.sp -o ../plugins/textstore_mysql.smx
./spcomp textstore_tf2.sp -o ../plugins/textstore_tf2.smx
- name: Package
Expand Down
1 change: 1 addition & 0 deletions scripts/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ cp -r addons/sourcemod/plugins/textstore.smx package/addons/sourcemod/plugins
cp -r addons/sourcemod/plugins/textstore_defaults.smx package/addons/sourcemod/plugins/disabled
cp -r addons/sourcemod/plugins/textstore_generic.smx package/addons/sourcemod/plugins/disabled
cp -r addons/sourcemod/plugins/textstore_sqlite.smx package/addons/sourcemod/plugins/disabled
cp -r addons/sourcemod/plugins/textstore_mysql.smx package/addons/sourcemod/plugins/disabled
cp -r addons/sourcemod/plugins/textstore_tf2.smx package/addons/sourcemod/plugins/disabled
cp -r ../addons/sourcemod/configs/textstore package/addons/sourcemod/configs

0 comments on commit d6e6c52

Please sign in to comment.