Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin'
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddesh7 committed Nov 21, 2024
2 parents b02ad4c + 806faed commit 2215fd0
Show file tree
Hide file tree
Showing 57 changed files with 1,022 additions and 51 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Deploy Email App

on:
push:
branches:
- main # Update if your default branch is different

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20 # Ensure this matches your project requirements
cache: 'npm'

- name: Install dependencies
run: |
cd examples/email
npm install
- name: Build Email App
run: |
cd examples/email
npm run build
mkdir -p ../../gh-pages/email
cp -R dist/* ../../gh-pages/email
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: gh-pages
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 2215fd0

Please sign in to comment.