Skip to content
Merged

test #23

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/preview-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,17 @@ jobs:
echo "HTML files in public:"
find public -name "*.html" | head -5
- name: Debug Netlify Configuration
run: |
echo "Checking Netlify configuration..."
echo "NETLIFY_SITE_ID length: ${#NETLIFY_SITE_ID}"
echo "NETLIFY_AUTH_TOKEN length: ${#NETLIFY_AUTH_TOKEN}"
echo "Site ID (first 8 chars): ${NETLIFY_SITE_ID:0:8}..."
echo "Auth token (first 8 chars): ${NETLIFY_AUTH_TOKEN:0:8}..."
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}

- name: Deploy to Netlify
id: netlify
uses: nwtgck/actions-netlify@v3
Expand Down
1 change: 1 addition & 0 deletions src/services/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ export const client = Axios.create({
'Cache-Control': 'private',
},
});