Skip to content

refactor!: refactor source code to my CV #1

refactor!: refactor source code to my CV

refactor!: refactor source code to my CV #1

Workflow file for this run

name: Release a CV
on:
push:
tags:
- "*" # Any tag pushed to the repository
permissions:
contents: write
jobs:
call_rendercv_workflow:
name: RenderCV
uses: ./.github/workflows/rendercv.yaml
build:
needs: call_rendercv_workflow
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download RenderCV Output
uses: actions/download-artifact@v4
with:
name: RenderCV Output
path: rendercv_output
- name: Release
uses: softprops/action-gh-release@v2
with:
files: |
rendercv_output/*_CV.pdf
rendercv_output/*_CV.tex
generate_release_notes: true
make_latest: true