Skip to content

Update README.md

Update README.md #6

Workflow file for this run

name: Deploy
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
deploy:
permissions:
contents: read
id-token: write
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: latest
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Deploy
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
uses: ./.github/actions/deploy
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}