We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6df226c commit 0f6994bCopy full SHA for 0f6994b
.github/workflows/schema-dump.yml
@@ -52,7 +52,16 @@ jobs:
52
- name: Generate Application Key
53
run: php artisan key:generate
54
- name: Clear Application Cache
55
- run: php artisan optimize:clear
+ run: php artisan optimize:
56
+ - name: Run Migrations
57
+ run: php artisan migrate --force
58
+ env:
59
+ DB_CONNECTION: mysql
60
+ DB_HOST: 127.0.0.1
61
+ DB_PORT: ${{ job.services.mysql.ports['3306'] }}
62
+ DB_DATABASE: unit3d
63
+ DB_USERNAME: root
64
+ DB_PASSWORD: null
65
- name: Run Schema Dump
66
run: php artisan schema:dump --path=database/schema/mysql-schema-new.sql
67
env:
0 commit comments