Skip to content

Add CSS verification step and force fresh deployment to fix productio… #104

Add CSS verification step and force fresh deployment to fix productio…

Add CSS verification step and force fresh deployment to fix productio… #104

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Clear cache
run: npm run clear || true
- name: Verify PostCSS config
run: cat postcss.config.js
- name: Build website
run: npm run build
env:
NODE_ENV: production
CI: true
- name: Verify CSS file exists
run: |
CSS_FILE=$(find build/assets/css -name "styles.*.css" | head -1)
if [ -z "$CSS_FILE" ]; then
echo "ERROR: CSS file not found!"
exit 1
fi
echo "CSS file found: $CSS_FILE"
echo "CSS file size: $(wc -c < $CSS_FILE) bytes"
# Check if Tailwind classes are present
if grep -q "bg-gradient\|flex\|grid" "$CSS_FILE"; then
echo "✓ Tailwind classes found in CSS"
else
echo "WARNING: Tailwind classes not found in CSS"
fi
# Popular action to deploy to GitHub Pages:
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Build output to publish to the `gh-pages` branch:
publish_dir: ./build
user_name: github-actions[bot]
user_email: 41898282+github-actions[bot]@users.noreply.github.com
# Force update to bypass cache
force_orphan: false
cname: kubesimplify.com