--- kind: pipeline type: docker name: build-release clone: disable: true steps: - name: clone image: plugins/git settings: recursive: true - name: fetch images images: alpine/git commands: - git lfs fetch - name: pandoc image: pandoc/core:2.18-alpine commands: - sh build-pandoc.sh latex user > user/user-manual.tex - sh build-pandoc.sh latex admin > admin/admin-manual.tex - name: build-latex-user image: texlive/texlive commands: - echo "images" - ls user/img - echo $PWD - cd user - ls -lah img/ - echo $PWD - latexmk -pdf -file-line-error -halt-on-error -interaction=nonstopmode -xelatex user-manual.tex - name: build-latex-admin image: texlive/texlive commands: - echo "images" - ls user/img - echo $PWD - cd admin - echo $PWD - latexmk -pdf -file-line-error -halt-on-error -interaction=nonstopmode -xelatex admin-manual.tex - name: release image: plugins/gitea-release settings: api_key: from_secret: gitea_key base_url: https://gitea.champs-libres.be files: - user-manual.pdf - admin-manual.pdf checksum: - sha512 title: ${DRONE_TAG:=latest} prerelease: true --- kind: signature hmac: 2a8d8c7147dee472ce79f7564db1ae208a8e131b7659f0e15c9f90a7c05f9011 ...