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

[setup](build) change resume to pandoc #105

Merged
merged 3 commits into from
Jan 6, 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
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down Expand Up @@ -30,7 +30,7 @@ jobs:
uses: actions/[email protected]
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

2 changes: 1 addition & 1 deletion action/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh

sh -c "cd /home/app/resume && make pdf"
sh -c "cd /home/app/pandoc && make pdf"
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading