docs(claude): clarify repo description and entry naming rule #30
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 Website | |
| on: | |
| push: | |
| branches: | |
| - master | |
| schedule: | |
| - cron: "0 0 * * *" | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: pages | |
| cancel-in-progress: false | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: uv sync --group build | |
| - name: Run tests | |
| run: make test | |
| - name: Restore star data cache | |
| id: cache-stars | |
| uses: actions/cache/restore@v4 | |
| with: | |
| path: website/data/github_stars.json | |
| key: github-stars-${{ github.run_id }} | |
| restore-keys: github-stars- | |
| - name: Fetch GitHub stars | |
| id: fetch-stars | |
| continue-on-error: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: make fetch_github_stars | |
| - name: Save star data cache | |
| if: steps.fetch-stars.outcome == 'success' | |
| uses: actions/cache/save@v4 | |
| with: | |
| path: website/data/github_stars.json | |
| key: github-stars-${{ github.run_id }} | |
| - name: Verify star data exists | |
| run: | | |
| if [ ! -f website/data/github_stars.json ]; then | |
| echo "::error::github_stars.json not found. No cache and fetch failed or was skipped." | |
| exit 1 | |
| fi | |
| echo "Star data found: $(wc -l < website/data/github_stars.json) lines" | |
| - name: Build site | |
| run: make build | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v4 | |
| with: | |
| path: website/output/ | |
| deploy: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: github-pages | |
| url: https://awesome-python.com/ | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |