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

37 lines
763 B
YAML

name: Deploy to GitHub Pages
on:
workflow_run:
workflows: ["RenderCV"]
types:
- completed
branches:
- main
jobs:
deploy:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Pages
uses: actions/configure-pages@v6
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: "."
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5