Skip to content

Commit

Permalink
update name affects ratelimit (#2694)
Browse files Browse the repository at this point in the history
* fix: updating name does not affect ratelimits

* ci: add logdrain deploy
  • Loading branch information
chronark authored Nov 29, 2024
1 parent 95e6112 commit 90f203e
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/job_deploy_logdrain_production.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Deploy Logdrain Production
on:
workflow_call:
secrets:
CLOUDFLARE_API_TOKEN:
required: true



jobs:
deploy:
environment: Production
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install
uses: ./.github/actions/install
with:
ts: true

- name: Build
run: pnpm turbo run build --filter='./apps/logdrain'

- name: Deploy
run: wrangler deploy
working-directory: apps/logdrain
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}

0 comments on commit 90f203e

Please sign in to comment.