File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 76
76
registry : ${{ matrix.db-type == 'enterprise' && 'docker.mariadb.com/enterprise-server' || (matrix.db-type == 'dev' && 'quay.io/mariadb-foundation/mariadb-devel' || '') }}
77
77
registry-user : ${{ matrix.db-type == 'enterprise' && secrets.ENTERPRISE_USER || '' }}
78
78
registry-password : ${{ matrix.db-type == 'enterprise' && secrets.ENTERPRISE_TOKEN || '' }}
79
- additional-conf : ${{ format('{0}{1}', matrix.additional-conf || '', 'ssl-ca=/etc/mysql/conf.d/ca.crt\nssl-cert=/etc/mysql/conf.d/server.crt\nssl-key=/etc/mysql/conf.d/server.key') }}
79
+ additional-conf : |
80
+ ${{ matrix.additional-conf || '' }}
81
+ ssl-ca=/etc/mysql/conf.d/ca.crt
82
+ ssl-cert=/etc/mysql/conf.d/server.crt
83
+ ssl-key=/etc/mysql/conf.d/server.key
84
+ conf-script-folder : ${{ github.workspace }}/.github/workflows/certs
80
85
port : ${{ env.TEST_DB_PORT }}
81
86
82
87
- name : Setup MySQL
You can’t perform that action at this time.
0 commit comments