Skip to content

Commit

Permalink
fix local build
Browse files Browse the repository at this point in the history
  • Loading branch information
lawndoc committed Sep 28, 2024
1 parent 929f72c commit ad0b106
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/generate_polyglot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Create release
uses: ncipollo/release-action@v1
with:
artifacts: "/release/CJ_May_Resume_DevSecOps.pdf,/release/CJ_May_Resume_CyberSec.pdf"
artifacts: "release/CJ_May_Resume_DevSecOps.pdf,release/CJ_May_Resume_CyberSec.pdf"
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.tag.outputs.TAG }}
name: "CJ May Resume"
Expand Down
2 changes: 1 addition & 1 deletion Makefile_CyberSec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ release : PDFGitPolyglot.pdf
rm *.out
rm -rf __pycache__
mkdir -p release
mv PDFGitPolyglot.pdf /release/CJ_May_Resume_CyberSec.pdf
mv PDFGitPolyglot.pdf release/CJ_May_Resume_CyberSec.pdf

.PHONY : local-clean
local-clean :
Expand Down
2 changes: 1 addition & 1 deletion Makefile_DevSecOps
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ release : PDFGitPolyglot.pdf
rm *.out
rm -rf __pycache__
mkdir -p release
mv PDFGitPolyglot.pdf /release/CJ_May_Resume_DevSecOps.pdf
mv PDFGitPolyglot.pdf release/CJ_May_Resume_DevSecOps.pdf

.PHONY : local-clean
local-clean :
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ git checkout master && git branch -d PolyglotBranch
After that, or if you cloned the repo from elsewhere (*e.g.*, [GitHub](https://github.com/lawndoc/resume)), then you can build the PDF from the git repo directory with the following command:

```
docker run -it -v .:/build ghcr.io/lawndoc/gitpdf:master echo "DevSecOps;CyberSec" | xargs -L1 -d ";" make -f
docker run -it -v .:/build ghcr.io/lawndoc/gitpdf:master echo -n "DevSecOps;CyberSec" | xargs -L1 -d ";" -I {} make -f Makefile_{}
```

This will automatically build my resumes and put them in the `release` folder.
Expand All @@ -45,4 +45,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of

The above copyright notice, this permission notice, and the entire contents and history of its associated git repository shall be included in all copies or substantial portions of the Software.

The Software is provided “as is”, without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the Software or the use or other dealings in the software.
The Software is provided “as is”, without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the Software or the use or other dealings in the software.

0 comments on commit ad0b106

Please sign in to comment.