Skip to content

Update the Links to tryNow section #72

Update the Links to tryNow section

Update the Links to tryNow section #72

Workflow file for this run

# Documentation: https://help.github.com/en/articles/workflow-syntax-for-github-actions
# Documentation: https://www.npmjs.com/package/gh-pages
name: Continuous Deployment
on:
push:
branches:
- main
jobs:
deploy:
name: Build and Deploy to GH-Pages
runs-on: ubuntu-latest
steps:
- name: Checkout the code base
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Install dependencies
run: npm install
- name: Build the project
run: npm run build
- name: Deploy with gh-pages
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npm run deploy -- -u "github-actions-bot <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}