Skip to content

chore: metadata update #132

chore: metadata update

chore: metadata update #132

Workflow file for this run

name: Build and Deploy Staging
on:
push:
branches:
- tailwind-staging
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Configure Git
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: out
publish_branch: gh-pages