Skip to content

Merge pull request #136 from WeatherXM/FE-1055-Update-Pulse-&-D1-docu… #131

Merge pull request #136 from WeatherXM/FE-1055-Update-Pulse-&-D1-docu…

Merge pull request #136 from WeatherXM/FE-1055-Update-Pulse-&-D1-docu… #131

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Build website
run: yarn build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./build