Files
tiennm99 953841e888 Update CV with new contact info, projects, and tooling upgrades
Add phone number and Telegram contact, add Sky Garden project, add Go to
skills, update rendercv to v2.8 with avatar support, bump GitHub Actions
versions, and update date to Mar 2026.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-30 22:26:29 +07:00

38 lines
858 B
YAML

name: RenderCV
on:
push:
paths:
- "miti99.yml"
pull_request:
paths:
- "miti99.yml"
workflow_dispatch:
jobs:
render:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install RenderCV
run: |
python -m pip install --upgrade pip
pip install "rendercv[full]"
- name: Render CV
run: rendercv render miti99.yml
- name: Commit and push changes
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add -A
git diff --staged --quiet || git commit -m "chore: auto-render CV"
git push