Update dockerfile and deploy.yml (#3) #11
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
| # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: false | |
| jobs: | |
| deploy: | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 18.x | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| - name: Install Python dependencies | |
| run: pip install feedgen pyyaml | |
| - name: Install MyST Markdown | |
| run: npm install -g mystmd | |
| - name: Setup Typst | |
| uses: typst-community/setup-typst@v5 | |
| - name: Download fonts | |
| run: | | |
| mkdir -p fonts | |
| # Source Sans Pro (body font) | |
| curl -sL "https://github.com/adobe-fonts/source-sans-pro/releases/download/3.006R/source-sans-pro-3.006R.zip" -o source-sans-pro.zip | |
| unzip -o source-sans-pro.zip -d /tmp/ssp | |
| cp /tmp/ssp/source-sans-pro-3.006R/OTF/*.otf fonts/ | |
| # Font Awesome 6 (icons) | |
| curl -sL "https://use.fontawesome.com/releases/v6.7.2/fontawesome-free-6.7.2-desktop.zip" -o fa.zip | |
| unzip -o fa.zip -d /tmp/fa | |
| cp /tmp/fa/fontawesome-free-6.7.2-desktop/otfs/*.otf fonts/ | |
| - name: Generate CV Typst source | |
| run: python generate_cv.py | |
| - name: Compile CV PDF | |
| run: typst compile cv.typ cv.pdf --font-path ./fonts --ignore-system-fonts | |
| - name: Build HTML Assets | |
| # Remove BASE_URL if using a custom domain (CNAME) | |
| env: | |
| BASE_URL: /${{ github.event.repository.name }} | |
| run: myst build --html | |
| - name: Generate RSS and Atom feeds | |
| run: python generate_rss.py | |
| # TODO: Update the URL below with your custom domain | |
| - name: Rewrite localhost URLs in sitemap | |
| run: | | |
| if [ -f ./_build/html/sitemap.xml ]; then | |
| sed -i 's|http://localhost:[0-9]*|https://example.com|g' ./_build/html/sitemap.xml | |
| fi | |
| # Uncomment after configuring Giscus (see inject_comments.py) | |
| # - name: Inject Giscus comments into blog posts | |
| # run: python inject_comments.py | |
| - name: Copy static files and rewrite CV URL to stable path | |
| run: | | |
| cp CNAME ./_build/html/ 2>/dev/null || true | |
| cp cv.pdf ./_build/html/cv.pdf | |
| # Rewrite hashed CV URL to stable /cv.pdf path | |
| find ./_build/html -name "*.html" -exec sed -i 's|/build/cv-[a-f0-9]\{20,\}\.pdf|/cv.pdf|g' {} \; | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v4 | |
| with: | |
| path: "./_build/html" | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v5 |