mirror of
https://github.com/vinta/awesome-python.git
synced 2026-03-23 05:03:45 +08:00
Catches parser regressions before any deployment artifact is produced. Co-Authored-By: Claude <noreply@anthropic.com>
84 lines
1.9 KiB
YAML
84 lines
1.9 KiB
YAML
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
|