2024-06-19 17:04:45 +07:00
|
|
|
name: build resume
|
|
|
|
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
|
|
build:
|
2024-06-19 19:08:36 +07:00
|
|
|
runs-on: native
|
2024-06-19 17:04:45 +07:00
|
|
|
steps:
|
2024-06-19 18:51:40 +07:00
|
|
|
- uses: actions/checkout@v4
|
2024-06-19 17:04:45 +07:00
|
|
|
- name: use typst
|
|
|
|
run: typst --version
|
|
|
|
shell: bash
|
|
|
|
- name: build resume
|
|
|
|
run: ./build.sh
|
|
|
|
shell: bash
|
2024-06-19 19:08:36 +07:00
|
|
|
- uses: actions/upload-artifact@v3
|
2024-06-19 17:04:45 +07:00
|
|
|
with:
|
|
|
|
name: Resume
|
|
|
|
path: resume.pdf
|
|
|
|
if-no-files-found: error
|