Skip to content

Commit

Permalink
[fix](build): change resume to pandoc (#109)
Browse files Browse the repository at this point in the history
* [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]>
  • Loading branch information
RalphHightower authored Jan 7, 2025
1 parent 7eee30f commit f8dc649
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*.log
*.pdf
*.html
resume.tex
pandoc.tex
*.swo
*.swp
*.docx
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
file: .docker/resume.dockerfile
file: .docker/pandoc.dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Test directory contents
run: 'ls -al'

- name: Build resume
- name: Build pandoc
uses: ./actions

- name: Upload a Build Artifact
Expand Down
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

buildResumeFor = system:
let pkgs = pkgsFor system;
in pkgs.runCommand "build-resume" {
in pkgs.runCommand "build-pandoc" {
nativeBuildInputs = with pkgs; [ pandoc texlive.combined.scheme-context ];
} ''
cd ${self}
Expand All @@ -32,11 +32,11 @@
in {
packages = perSystem (system:
let
resume = buildResumeFor system;
pandoc = buildPandocFor system;
in
{
inherit resume;
default = resume;
inherit pandoc;
default = pandoc;
});

devShells = perSystem (system: {
Expand Down
2 changes: 1 addition & 1 deletion styles/chmduquesne.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ body {
padding: 10px 10px 10px 10px;
}

/* Title of the resume */
/* Title of the pandoc */
h1 {
font-size: 55px;
color: #757575;
Expand Down
2 changes: 1 addition & 1 deletion styles/chmduquesne.tex
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
% Copyright 2013 Christophe-Marie Duquesne <[email protected]>
% Copyright 2014 Mark Szepieniec <http://github.com/mszep>
%
% ConText style for making a resume with pandoc. Inspired by moderncv.
% ConText style for making a pandoc with pandoc. Inspired by moderncv.
%
% This CSS document is delivered to you under the CC BY-SA 3.0 License.
% https://creativecommons.org/licenses/by-sa/3.0/deed.en_US
Expand Down

0 comments on commit f8dc649

Please sign in to comment.