aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: f87d85181f39cb615e10fb26944ecb685d6ed76b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
branches:
 only:
   - master
dist: focal
before_install:
  - sudo apt-get -qq update && sudo apt-get install -y --no-install-recommends texlive-fonts-recommended texlive-latex-extra texlive-fonts-extra dvipng texlive-latex-recommended
script:
  - make -C build
before_deploy:
  - git tag "draft-$(date +'%Y%m%d')-$(git log --format=%h -1)"
deploy:
  provider: releases
  edge: true
  api_key: $github_access_token
  file_glob: true
  file: build/*.pdf
  cleanup: false
  on:
    repo: riscv/riscv-isa-manual
    branch: master