summaryrefslogtreecommitdiffstats
path: root/.build.yml
blob: d6e0ae19978b6287988ed295ee2358b9eb02f676 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
image: alpine/latest
oauth: git.sr.ht/OBJECTS:RW
packages:
  - texlive-luatex
  - texmf-dist-most
  - hut
sources:
  - https://git.sr.ht/~tobyvin/resume
artifacts:
  - resume/resume.pdf
  - resume/cover_letters.tar.gz
tasks:
  - build: ./resume/build.sh
  - package: |
      cd resume
      (cd src && tar -czvf ../cover_letters.tar.gz */*.pdf)
      git describe --exact-match HEAD > pkgver || complete-build
  - publish: |
      cd resume
      hut git artifact upload ./resume.pdf ./cover_letters.tar.gz --rev=$(<pkgver)