Skip to content

Commit 21019c1

Browse files
committed
Add remaining files and sync repo
- Add GitHub Actions workflow for Jekyll deployment - Add resume PDFs - Add transparent logo variants - Update Gemfile
1 parent cd3ab31 commit 21019c1

11 files changed

Lines changed: 56 additions & 5 deletions
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: Deploy Jekyll to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: ["master"]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: "pages"
15+
cancel-in-progress: false
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v4
23+
24+
- name: Setup Ruby
25+
uses: ruby/setup-ruby@v1
26+
with:
27+
ruby-version: '3.3'
28+
bundler-cache: true
29+
30+
- name: Setup Pages
31+
id: pages
32+
uses: actions/configure-pages@v5
33+
34+
- name: Build with Jekyll
35+
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
36+
env:
37+
JEKYLL_ENV: production
38+
39+
- name: Upload artifact
40+
uses: actions/upload-pages-artifact@v3
41+
42+
deploy:
43+
environment:
44+
name: github-pages
45+
url: ${{ steps.deployment.outputs.page_url }}
46+
runs-on: ubuntu-latest
47+
needs: build
48+
steps:
49+
- name: Deploy to GitHub Pages
50+
id: deployment
51+
uses: actions/deploy-pages@v4

Gemfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
source 'https://rubygems.org'
22

3+
gem 'jekyll', '~> 4.3'
4+
gem 'webrick', '~> 1.8'
5+
36
group :jekyll_plugins do
4-
gem 'jekyll'
57
gem 'jekyll-feed'
8+
gem 'jekyll-gist'
9+
gem 'jekyll-paginate'
610
gem 'jekyll-sitemap'
711
gem 'jekyll-redirect-from'
812
gem 'jemoji'
9-
gem 'webrick', '~> 1.8'
1013
end
11-
12-
gem 'github-pages'
13-
gem 'connection_pool', '2.5.0'

images/psu_logo_transparent.png

7.89 KB
Loading

images/ucb_logo_transparent.png

17.3 KB
Loading

resumes/AI_ML_driven.pdf

122 KB
Binary file not shown.

resumes/CV-2.pdf

132 KB
Binary file not shown.

resumes/CV.pdf

125 KB
Binary file not shown.

resumes/NVIDIA_resume_ML.pdf

128 KB
Binary file not shown.

resumes/Resume_27_1_26.pdf

175 KB
Binary file not shown.

resumes/internship_CV.pdf

122 KB
Binary file not shown.

0 commit comments

Comments
 (0)