Skip to content

Commit

Permalink
Initial Update
Browse files Browse the repository at this point in the history
  • Loading branch information
nmdra committed Dec 30, 2023
0 parents commit 7879da8
Show file tree
Hide file tree
Showing 28 changed files with 2,773 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @nmdra
23 changes: 23 additions & 0 deletions .github/workflows/Compile-pdf.yml
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
34 changes: 34 additions & 0 deletions .github/workflows/Release-pdf.yml
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


416 changes: 416 additions & 0 deletions LICENCE

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions Makefile
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
9 changes: 9 additions & 0 deletions README.md
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).
Loading

0 comments on commit 7879da8

Please sign in to comment.