From bbf5ae9b8580dbf8b39cd9db9ab3348b2da7430f Mon Sep 17 00:00:00 2001 From: Ralph Hightower <32745442+RalphHightower@users.noreply.github.com> Date: Sun, 5 Jan 2025 22:24:25 -0500 Subject: [PATCH 1/3] [setup](build) change resume to pandoc Signed-off-by: Ralph Hightower <32745442+RalphHightower@users.noreply.github.com> --- docker-compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 29af42fb..76d1bcdd 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,9 +5,9 @@ services: resume-make: build: context: . - dockerfile: ./.docker/resume.dockerfile - container_name: resume-make + dockerfile: ./.docker/pandic.dockerfile + container_name: pandoc-make entrypoint: /entrypoint.sh - image: resume-make + image: pandoc-make volumes: - - .:/home/app/resume:z + - .:/home/app/pandoc:z From e7d74a9e9e08069c1ce56389a3ead326408ad15a Mon Sep 17 00:00:00 2001 From: Ralph Hightower <32745442+RalphHightower@users.noreply.github.com> Date: Sun, 5 Jan 2025 22:27:05 -0500 Subject: [PATCH 2/3] [setup](build) change resume to pandoc Signed-off-by: Ralph Hightower <32745442+RalphHightower@users.noreply.github.com> --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 27512901..9e429343 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,6 +1,6 @@ # This is a basic workflow to help you get started with Actions -name: build-resume +name: build-pandoc files # Controls when the action will run. on: @@ -30,7 +30,7 @@ jobs: uses: actions/upload-artifact@v2.2.3 with: # Artifact name - name: Resume PDF # optional, default is artifact + name: pandoc PDF # optional, default is artifact # A file, directory or wildcard pattern that describes what to upload path: output/*.pdf From 28ede986f580cdb6a9b351123625496fdd853a2e Mon Sep 17 00:00:00 2001 From: Ralph Hightower <32745442+RalphHightower@users.noreply.github.com> Date: Sun, 5 Jan 2025 22:28:46 -0500 Subject: [PATCH 3/3] [setup](build) change resume to pandoc Signed-off-by: Ralph Hightower <32745442+RalphHightower@users.noreply.github.com> --- action/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action/entrypoint.sh b/action/entrypoint.sh index 087485a9..5975f465 100644 --- a/action/entrypoint.sh +++ b/action/entrypoint.sh @@ -1,3 +1,3 @@ #!/bin/sh -sh -c "cd /home/app/resume && make pdf" +sh -c "cd /home/app/pandoc && make pdf"