Skip to content

Commit

Permalink
ci: set up initial script
Browse files Browse the repository at this point in the history
Add CI to build documentation with each push
  • Loading branch information
DeveloperPaul123 committed Apr 1, 2024
1 parent 311bf4f commit b965ea0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build documentation
on: [push, workflow_dispatch]
jobs:
build_pdf:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v3
- name: Typst
uses: yusancky/setup-typst@v2
id: setup-typst
with:
version: 'v0.11.0'
- run: typst compile modern-cv-docs.typ
- name: Upload PDF file
uses: actions/upload-artifact@v3
with:
name: modern-cv-documentation
path: modern-cv-documentation.pdf

0 comments on commit b965ea0

Please sign in to comment.