File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 3737 echo "HTML files in public:"
3838 find public -name "*.html" | head -5
3939
40+ - name : Debug Netlify Configuration
41+ run : |
42+ echo "Checking Netlify configuration..."
43+ echo "NETLIFY_SITE_ID length: ${#NETLIFY_SITE_ID}"
44+ echo "NETLIFY_AUTH_TOKEN length: ${#NETLIFY_AUTH_TOKEN}"
45+ echo "Site ID (first 8 chars): ${NETLIFY_SITE_ID:0:8}..."
46+ echo "Auth token (first 8 chars): ${NETLIFY_AUTH_TOKEN:0:8}..."
47+ env :
48+ NETLIFY_AUTH_TOKEN : ${{ secrets.NETLIFY_AUTH_TOKEN }}
49+ NETLIFY_SITE_ID : ${{ secrets.NETLIFY_SITE_ID }}
50+
4051 - name : Deploy to Netlify
4152 id : netlify
4253 uses : nwtgck/actions-netlify@v3
Original file line number Diff line number Diff line change @@ -9,3 +9,4 @@ export const client = Axios.create({
99 'Cache-Control' : 'private' ,
1010 } ,
1111} ) ;
12+
You can’t perform that action at this time.
0 commit comments