-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 7879da8
Showing
28 changed files
with
2,773 additions
and
0 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @nmdra |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Compile PDFs | ||
|
||
on: | ||
push: {} | ||
pull_request: {} | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: texlive/texlive:latest | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Compile | ||
run: make | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: Output | ||
path: pdf/*.pdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Release PDFs | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*.*" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
container: texlive/texlive:latest | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Compile | ||
run: make | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: examples | ||
path: pdf/*.pdf | ||
|
||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: pdf/*.pdf | ||
generate_release_notes: true | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
.PHONY: examples | ||
|
||
CC = xelatex | ||
EXAMPLES_DIR = pdf | ||
RESUME_DIR = pdf/resume | ||
# CV_DIR = pdf/cv | ||
RESUME_SRCS = $(shell find $(RESUME_DIR) -name '*.tex') | ||
# CV_SRCS = $(shell find $(CV_DIR) -name '*.tex') | ||
|
||
examples: $(foreach x, resume, $x.pdf) | ||
|
||
resume.pdf: $(EXAMPLES_DIR)/Nimendra-Resume.tex $(RESUME_SRCS) | ||
$(CC) -output-directory=$(EXAMPLES_DIR) $< | ||
|
||
# cv.pdf: $(EXAMPLES_DIR)/Nimendra-CV.tex $(CV_SRCS) | ||
# $(CC) -output-directory=$(EXAMPLES_DIR) $< | ||
|
||
clean: | ||
rm -rf $(EXAMPLES_DIR)/*.pdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## Overview | ||
|
||
- This repository contains my professional resume & CV, Feel free to explore and download the PDF version for more details. | ||
|
||
- You can download the latest version of my resume & CV in PDF format from the [Releases](https://github.com/nmdra/Resume/releases) section. | ||
|
||
------ | ||
|
||
This resume is based on the [Awesome-CV](https://github.com/posquit0/Awesome-CV) template by [posquit0](https://github.com/posquit0). |
Oops, something went wrong.