Skip to content

Commit

Permalink
fox
Browse files Browse the repository at this point in the history
  • Loading branch information
cmb69 committed Jan 24, 2025
1 parent d5c7b9b commit 69243b2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/actions/setup-windows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ runs:
- name: Setup MySQL
shell: cmd
run: |
mysqld --initialize-insecure
mysqld --install
net start MySQL
mysql.exe --port=3306 --user=root --password="" -e "ALTER USER 'root'@'localhost' IDENTIFIED BY 'Password12!'; FLUSH PRIVILEGES;"
mysql -u root -e "SELECT VERSION()"
mysql --port=3306 --user=root --password="" -e "ALTER USER 'root'@'localhost' IDENTIFIED BY 'Password12!'; FLUSH PRIVILEGES;"
- name: Setup MSSQL
shell: pwsh
run: |
Expand Down

0 comments on commit 69243b2

Please sign in to comment.