30 lines
618 B
YAML
30 lines
618 B
YAML
|
name: Push to cloudflare pages
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v4
|
||
|
|
||
|
- name: Setup pnpm
|
||
|
uses: pnpm/action-setup@v4
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: pnpm install
|
||
|
|
||
|
- name: Build
|
||
|
run: pnpm build
|
||
|
|
||
|
- name: Setup wrangler
|
||
|
uses: cloudflare/wrangler-action@v3
|
||
|
with:
|
||
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||
|
command: |
|
||
|
pages deploy .svelte-kit/cloudflare --project-name=protogen-social-down-page
|