Skip to content

chore(badge): adjust for mobile screen. #21

chore(badge): adjust for mobile screen.

chore(badge): adjust for mobile screen. #21

Workflow file for this run

# .github/workflows/deploy.yml
name: Deploy Next.js to GitHub Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies
run: yarn install
- name: Build Next.js app
run: yarn next build && yarn next export
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out