Skip to content

Commit f8dc649

Browse files
[fix](build): change resume to pandoc (#109)
* [fix](build): change resume to pandoc Signed-off-by: Ralph Hightower <[email protected]> * [fix](build): change resume to pandoc Signed-off-by: Ralph Hightower <[email protected]> * [fix](build): mv action/ actions/ * [fix](blog): change resume to pandoc Signed-off-by: Ralph Hightower <[email protected]> * [fix](build): change resume to pandoc Signed-off-by: Ralph Hightower <[email protected]> * [fix](build): change resume to pandoc Signed-off-by: Ralph Hightower <[email protected]> * [fix](build): change resume to pandoc Signed-off-by: Ralph Hightower <[email protected]> --------- Signed-off-by: Ralph Hightower <[email protected]>
1 parent 7eee30f commit f8dc649

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*.log
33
*.pdf
44
*.html
5-
resume.tex
5+
pandoc.tex
66
*.swo
77
*.swp
88
*.docx

.github/workflows/docker-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
4949
with:
5050
context: .
51-
file: .docker/resume.dockerfile
51+
file: .docker/pandoc.dockerfile
5252
push: true
5353
tags: ${{ steps.meta.outputs.tags }}
5454
labels: ${{ steps.meta.outputs.labels }}

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Test directory contents
2424
run: 'ls -al'
2525

26-
- name: Build resume
26+
- name: Build pandoc
2727
uses: ./actions
2828

2929
- name: Upload a Build Artifact
File renamed without changes.

flake.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
buildResumeFor = system:
2525
let pkgs = pkgsFor system;
26-
in pkgs.runCommand "build-resume" {
26+
in pkgs.runCommand "build-pandoc" {
2727
nativeBuildInputs = with pkgs; [ pandoc texlive.combined.scheme-context ];
2828
} ''
2929
cd ${self}
@@ -32,11 +32,11 @@
3232
in {
3333
packages = perSystem (system:
3434
let
35-
resume = buildResumeFor system;
35+
pandoc = buildPandocFor system;
3636
in
3737
{
38-
inherit resume;
39-
default = resume;
38+
inherit pandoc;
39+
default = pandoc;
4040
});
4141

4242
devShells = perSystem (system: {

styles/chmduquesne.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ body {
1717
padding: 10px 10px 10px 10px;
1818
}
1919

20-
/* Title of the resume */
20+
/* Title of the pandoc */
2121
h1 {
2222
font-size: 55px;
2323
color: #757575;

styles/chmduquesne.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
% Copyright 2013 Christophe-Marie Duquesne <[email protected]>
22
% Copyright 2014 Mark Szepieniec <http://github.com/mszep>
33
%
4-
% ConText style for making a resume with pandoc. Inspired by moderncv.
4+
% ConText style for making a pandoc with pandoc. Inspired by moderncv.
55
%
66
% This CSS document is delivered to you under the CC BY-SA 3.0 License.
77
% https://creativecommons.org/licenses/by-sa/3.0/deed.en_US

0 commit comments

Comments
 (0)