mirror of
https://github.com/tiennm99/cv.git
synced 2026-06-05 20:12:49 +00:00
953841e888
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>
38 lines
858 B
YAML
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
|