File tree Expand file tree Collapse file tree 1 file changed +1
-26
lines changed
Expand file tree Collapse file tree 1 file changed +1
-26
lines changed Original file line number Diff line number Diff line change 6161 chmod +x .github/workflows/generate-certs.sh
6262 ./.github/workflows/generate-certs.sh
6363
64- - name : Debug - List certificate files
65- shell : bash
66- run : |
67- echo "=== Certificate directory contents ==="
68- ls -la ${{ github.workspace }}/.github/workflows/certs/ || echo "Certificate directory does not exist"
69- echo ""
70- echo "=== MariaDB SSL Configuration File Content ==="
71- if [ -f "${{ github.workspace }}/.github/workflows/certs/1-server-ssl.cnf" ]; then
72- echo "Content of 1-server-ssl.cnf:"
73- cat ${{ github.workspace }}/.github/workflows/certs/1-server-ssl.cnf
74- else
75- echo "1-server-ssl.cnf not found"
76- fi
77- echo ""
78- echo "=== Certificate file details ==="
79- if [ -d "${{ github.workspace }}/.github/workflows/certs" ]; then
80- for file in ${{ github.workspace }}/.github/workflows/certs/*; do
81- if [ -f "$file" ]; then
82- echo "File: $file"
83- ls -la "$file"
84- file "$file" 2>/dev/null || echo "file command not available"
85- fi
86- done
87- fi
88-
8964 - uses : actions/setup-node@v4
9065 with :
9166 node-version : ${{ matrix.node }}
10277 registry-user : ${{ matrix.db-type == 'enterprise' && secrets.ENTERPRISE_USER || '' }}
10378 registry-password : ${{ matrix.db-type == 'enterprise' && secrets.ENTERPRISE_TOKEN || '' }}
10479 additional-conf : ${{ matrix.additional-conf || '' }}
105- conf-script-folder : ${{ runner.os == 'ubuntu-latest' && format('{0} /.github/workflows/certs', github.workspace) || '' }}
80+ conf-script-folder : ${{ github.workspace }} /.github/workflows/certs
10681
10782 - name : Setup MySQL
10883 if : matrix.db-type == 'mysql'
You can’t perform that action at this time.
0 commit comments