2024-07-14 14:39:42 +00:00
|
|
|
when:
|
|
|
|
- event: push
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Deploy
|
2024-07-14 14:47:48 +00:00
|
|
|
image: docker.io/library/node:20-alpine
|
2024-07-14 14:39:42 +00:00
|
|
|
commands:
|
|
|
|
- npm install -g pnpm
|
|
|
|
- pnpm install --frozen-lockfile
|
|
|
|
- pnpm run build
|
|
|
|
- pnpx wrangler pages deploy dist
|
2024-07-14 14:58:51 +00:00
|
|
|
secrets: [ cloudflare_api_token, cloudflare_account_id, content_api_url, content_api_key ]
|