--- kind: pipeline type: docker name: build-release clone: disable: true steps: - name: clone image: plugins/git settings: recursive: true - name: fetch images image: alpine/git commands: - git lfs fetch - git lfs checkout - 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: - cd user - latexmk -pdf -file-line-error -halt-on-error -interaction=nonstopmode -xelatex user-manual.tex - mv user-manual.pdf ../Manuel\ utilisateur.pdf - name: build-latex-admin image: texlive/texlive commands: - cd admin - latexmk -pdf -file-line-error -halt-on-error -interaction=nonstopmode -xelatex admin-manual.tex - mv admin-manual.pdf ../Manuel\ administrateur.pdf - name: release image: plugins/gitea-release settings: api_key: from_secret: gitea_key base_url: https://gitea.champs-libres.be files: - "Manuel administrateur.pdf" - "Manuel utilisateur.pdf" title: ${DRONE_TAG:=latest} when: event: - tag --- kind: signature hmac: dc200b08e09b83e734ff829ac62c7daf5f80986f725edac1b974b07793adb4b0 ...