Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix](build): change resume to pandoc #109

Merged
merged 7 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading