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 7777 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
7878 - name : Download prerequisites
7979 uses : ./.github/actions/download-prerequisites
80+ - name : Debug: Output downloaded schema
81+ run : |
82+ echo "=== Downloaded schema-embed.json content ==="
83+ if [ -f "provider/cmd/pulumi-resource-scm/schema-embed.json" ]; then
84+ echo "Schema file exists, size: $(wc -c < provider/cmd/pulumi-resource-scm/schema-embed.json) bytes"
85+ echo "First 1000 characters:"
86+ head -c 1000 provider/cmd/pulumi-resource-scm/schema-embed.json
87+ echo ""
88+ echo "=== Looking for EAPTTLSWithPAP in schema ==="
89+ if grep -q "EAPTTLSWithPAP" provider/cmd/pulumi-resource-scm/schema-embed.json; then
90+ echo "✓ Found EAPTTLSWithPAP (uppercase) in schema"
91+ else
92+ echo "✗ EAPTTLSWithPAP (uppercase) NOT found in schema"
93+ fi
94+ if grep -q "EapTtlsWithPap" provider/cmd/pulumi-resource-scm/schema-embed.json; then
95+ echo "✓ Found EapTtlsWithPap (lowercase) in schema"
96+ else
97+ echo "✗ EapTtlsWithPap (lowercase) NOT found in schema"
98+ fi
99+ else
100+ echo "❌ Schema file does not exist!"
101+ fi
80102 - name : Update path
81103 run : echo "${{ github.workspace }}/bin" >> "$GITHUB_PATH"
82104 - name : Restore makefile progress
You can’t perform that action at this time.
0 commit comments