File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
Expand file tree Collapse file tree 1 file changed +22
-0
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 "=== 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 }}
You can’t perform that action at this time.
0 commit comments