fix: fix OG image (#163) #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Setup | Checkout | |
uses: actions/[email protected] | |
with: | |
ref: main | |
- name: Setup | Node.js | |
uses: re-taro/actions/[email protected] | |
with: | |
node-version-file: .nvmrc | |
- name: Deploy | Build | |
run: pnpm build | |
- name: Deploy | Deploy to Cloudflare Pages | |
id: page | |
uses: cloudflare/[email protected] | |
with: | |
apiToken: ${{ secrets.CF_API_TOKEN }} | |
accountId: ${{ secrets.CF_ACCOUNT_ID }} | |
command: pages deploy --project-name 2024-hp --directory build/client |