Skip to content

Commit 20dad96

Browse files
committed
[misc] add ssl
1 parent 031714e commit 20dad96

File tree

1 file changed

+1
-26
lines changed

1 file changed

+1
-26
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -61,31 +61,6 @@ jobs:
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 }}
@@ -102,7 +77,7 @@ jobs:
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'

0 commit comments

Comments
 (0)