2025-01-25 16:04:15 +02:00
|
|
|
name: Push to cloudflare pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
2025-01-25 16:17:41 +02:00
|
|
|
- name: Setup node
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version: 'lts/*'
|
|
|
|
|
2025-01-25 16:04:15 +02:00
|
|
|
- name: Setup pnpm
|
|
|
|
uses: pnpm/action-setup@v4
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: pnpm build
|
|
|
|
|
|
|
|
- name: Setup wrangler
|
2025-01-25 16:14:11 +02:00
|
|
|
uses: https://github.com/cloudflare/wrangler-action@v3
|
2025-01-25 16:04:15 +02:00
|
|
|
with:
|
|
|
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
2025-01-25 16:22:28 +02:00
|
|
|
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
2025-01-25 16:04:15 +02:00
|
|
|
command: |
|
|
|
|
pages deploy .svelte-kit/cloudflare --project-name=protogen-social-down-page
|