Skip to content

Merge pull request #19 from PranuPranav97/fix/useCountDownTimer #20

Merge pull request #19 from PranuPranav97/fix/useCountDownTimer

Merge pull request #19 from PranuPranav97/fix/useCountDownTimer #20

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main # Replace with the branch you want to trigger the deployment from
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 16 # Replace with the desired Node.js version
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_dir: ./build
publish_branch: gh-pages