Skip to content

Commit

Permalink
Merge pull request #1 from Jyoti-Technosoft/feature/deploy-pages
Browse files Browse the repository at this point in the history
github pages configuration
  • Loading branch information
DipeshGandhi9 committed Jun 2, 2023
2 parents a8bebfb + c4e83fc commit d4d4b4b
Show file tree
Hide file tree
Showing 2 changed files with 2,179 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/gh-pages-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: GitHub Pages Deployment

on:
push:
branches:
- master
- develop
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"

- name: Install dependencies
run: npm install

- name: Build
run: npm run build

- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./dist
destination: ./_site

- name: Upload artifact
uses: actions/upload-pages-artifact@v1

deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy content to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
Loading

0 comments on commit d4d4b4b

Please sign in to comment.