Use docker to generate PDF, and add CI.
continuous-integration/drone/tag Build is passing
Details
continuous-integration/drone/tag Build is passing
Details
This commit is contained in:
parent
095d7bbf75
commit
d8957a4023
|
|
@ -0,0 +1,23 @@
|
||||||
|
kind: pipeline
|
||||||
|
name: ccr
|
||||||
|
type: docker
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: generate-pdf
|
||||||
|
image: git.axpdsp.org/parliamentarian/bylaw-builder
|
||||||
|
commands:
|
||||||
|
- "make"
|
||||||
|
- "date -I > title"
|
||||||
|
- name: publish
|
||||||
|
image: plugins/gitea-release
|
||||||
|
settings:
|
||||||
|
base_url: https://git.axpdsp.org
|
||||||
|
api_key:
|
||||||
|
from_secret: api_key
|
||||||
|
files:
|
||||||
|
- code.pdf
|
||||||
|
title: title
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
|
@ -3,7 +3,5 @@
|
||||||
* Generating PDFs
|
* Generating PDFs
|
||||||
A PDF can be generated using the following command:
|
A PDF can be generated using the following command:
|
||||||
#+begin_src bash
|
#+begin_src bash
|
||||||
guix shell -m manifest.scm -- make
|
docker run --rm -v $PWD:/data -w /data git.axpdsp.org/parliamentarian/bylaw-builder make
|
||||||
#+end_src
|
#+end_src
|
||||||
Assuming that [[https://guix.gnu.org/][GNU Guix]] is installed, this command will handle downloading all
|
|
||||||
dependencies, generating a pdf, and cleaning up temporary files.
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
;; What follows is a "manifest" equivalent to the command line you gave.
|
|
||||||
;; You can store it in a file that you may then pass to any 'guix' command
|
|
||||||
;; that accepts a '--manifest' (or '-m') option.
|
|
||||||
|
|
||||||
(specifications->manifest
|
|
||||||
(list "emacs-next" "texlive" "make" "git"))
|
|
||||||
|
|
@ -6,12 +6,12 @@
|
||||||
("\\chapter{%s}" . "\\chapter*{%s}")
|
("\\chapter{%s}" . "\\chapter*{%s}")
|
||||||
("\\section{%s}" . "\\section*{%s}"))))
|
("\\section{%s}" . "\\section*{%s}"))))
|
||||||
|
|
||||||
(setopt org-latex-hyperref-template "
|
(setq org-latex-hyperref-template "
|
||||||
\\hypersetup{\n pdfauthor={%a},\n pdftitle={%t},\n pdfkeywords={%k},
|
\\hypersetup{\n pdfauthor={%a},\n pdftitle={%t},\n pdfkeywords={%k},
|
||||||
pdfsubject={%d},\n pdfcreator={%c},\n pdflang={%L},\n colorlinks=true}\n")
|
pdfsubject={%d},\n pdfcreator={%c},\n pdflang={%L},\n colorlinks=true}\n")
|
||||||
|
|
||||||
(keymap-local-set
|
(local-set-key
|
||||||
"C-c t"
|
(kbd "C-c t")
|
||||||
(lambda nil
|
(lambda nil
|
||||||
(interactive)
|
(interactive)
|
||||||
(save-match-data
|
(save-match-data
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue