diff --git a/.github/workflows/cf-deploy.yml b/.github/workflows/cf-deploy.yml new file mode 100644 index 0000000..9f5fdc2 --- /dev/null +++ b/.github/workflows/cf-deploy.yml @@ -0,0 +1,16 @@ +name: Deploy Worker +on: + push: + pull_request: + repository_dispatch: +jobs: + deploy: + runs-on: ubuntu-latest + name: Deploy + steps: + - uses: actions/checkout@v4 + - name: Build & Deploy Worker + uses: cloudflare/wrangler-action@v3 + with: + apiToken: ${{ secrets.CF_API_TOKEN }} + accountId: ${{ secrets.CF_ACCOUNT_ID }}