mirror of
https://github.com/tiennm99/cv.git
synced 2026-06-05 16:13:31 +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>
37 lines
763 B
YAML
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
|