Skip to content

Commit b8021e9

Browse files
committed
[misc] add ssl
1 parent 5b31974 commit b8021e9

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,28 @@ 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 "=== Certificate file details ==="
71+
if [ -d "${{ github.workspace }}/.github/workflows/certs" ]; then
72+
for file in ${{ github.workspace }}/.github/workflows/certs/*; do
73+
if [ -f "$file" ]; then
74+
echo "File: $file"
75+
ls -la "$file"
76+
file "$file" 2>/dev/null || echo "file command not available"
77+
fi
78+
done
79+
fi
80+
echo ""
81+
echo "=== Working directory ==="
82+
pwd
83+
echo "=== Current directory contents ==="
84+
ls -la
85+
6486
- uses: actions/setup-node@v4
6587
with:
6688
node-version: ${{ matrix.node }}

0 commit comments

Comments
 (0)