My landing page, written in Astro hayden.moe
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: using cf workers to build for now

-23
-23
.github/workflows/build-deploy.yaml
··· 1 - --- 2 - name: Build & Deploy 3 - 4 - on: [push] 5 - 6 - jobs: 7 - deploy: 8 - runs-on: ubuntu-latest 9 - name: Deploy 10 - permissions: 11 - contents: read 12 - deployments: write 13 - steps: 14 - - uses: actions/checkout@v4 15 - - uses: oven-sh/setup-bun@v2 16 - - run: bun install 17 - - run: bun run build 18 - - uses: cloudflare/wrangler-action@v3 19 - with: 20 - apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} 21 - accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} 22 - command: deploy 23 - gitHubToken: ${{ secrets.GITHUB_TOKEN }}