Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ashu1069 committed Jul 30, 2024
1 parent 9f8bb43 commit e1884d8
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ name: Deploy Jekyll site to Pages

on:
push:
branches: ["main"]
branches:
- "main"
paths:
- "docs/**"


# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -28,6 +32,9 @@ jobs:
# Build job
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -37,6 +44,7 @@ jobs:
ruby-version: '3.3' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems
working-directory: '${{ github.workspace }}/docs'
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
Expand Down
4 changes: 4 additions & 0 deletions docs/blog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Blog
permalink: /blog/
---
4 changes: 4 additions & 0 deletions docs/resume.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Resume
permalink: /resume/
---

0 comments on commit e1884d8

Please sign in to comment.