Revert webpack config, keep simple config #107
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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\|hero-section-new" "$CSS_FILE"; then | |
| echo "✓ Tailwind classes found in CSS" | |
| echo "✓ Custom hero classes found in CSS" | |
| else | |
| echo "WARNING: Tailwind classes not found in CSS" | |
| exit 1 | |
| fi | |
| # Check for specific hero styles | |
| if grep -q "from-\[#050505\]\|hero-floating-card" "$CSS_FILE"; then | |
| echo "✓ Hero section styles found" | |
| else | |
| echo "WARNING: Hero section styles missing" | |
| 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 fresh deployment | |
| force_orphan: true | |
| cname: kubesimplify.com |