bluesky quote bot

Removed GitHub workflow

-35
-35
.github/workflows/deploy.yml
··· 1 - name: Deploy 2 - on: 3 - push: 4 - branches: main 5 - pull_request: 6 - branches: main 7 - workflow_dispatch: 8 - 9 - jobs: 10 - deploy: 11 - name: Deploy 12 - runs-on: ubuntu-latest 13 - 14 - permissions: 15 - id-token: write # Needed for auth with Deno Deploy 16 - contents: read # Needed to clone the repository 17 - 18 - steps: 19 - - name: Clone repository 20 - uses: actions/checkout@v4 21 - 22 - - name: Install Deno 23 - uses: denoland/setup-deno@v2 24 - with: 25 - deno-version: v2.x 26 - 27 - - name: Build step 28 - run: "deno task build" 29 - 30 - - name: Upload to Deno Deploy 31 - uses: denoland/deployctl@v1 32 - with: 33 - project: "onomatopoeia" 34 - entrypoint: "main.ts" 35 - root: "."