Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jun 24, 2024
1 parent e918ca3 commit d24ca48
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coldbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ jobs:
run: |
sudo systemctl start mysql
mysql -e 'CREATE DATABASE coolblog' -uroot -proot
mysql -e 'CREATE USER "coldbox"@"localhost" IDENTIFIED WITH mysql_native_password BY "preside";' -uroot -proot
mysql -e 'CREATE USER "coldbox"@"localhost" IDENTIFIED WITH mysql_native_password BY "coldbox";' -uroot -proot
mysql -e 'GRANT ALL PRIVILEGES ON coolblog.* TO "coldbox"@"localhost"' -uroot -proot
ls -la
cat .cfconfig.json
cat .CFConfig.json
- name: Run Coldbox Test Suite
uses: lucee/script-runner@main
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/masaCMS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@ jobs:
run: |
sudo systemctl start mysql
mysql -e 'CREATE DATABASE masacms' -uroot -proot
mysql -e 'CREATE USER "masacms"@"localhost" IDENTIFIED WITH mysql_native_password BY "preside";' -uroot -proot
mysql -e 'CREATE USER "masacms"@"localhost" IDENTIFIED WITH mysql_native_password BY "masacms";' -uroot -proot
mysql -e 'GRANT ALL PRIVILEGES ON masacms.* TO "masacms"@"localhost"' -uroot -proot
cat .CFConfig.json
- name: Cache Maven packages
uses: actions/cache@v4
with:
Expand Down

0 comments on commit d24ca48

Please sign in to comment.