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 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" 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