2023-07-12 05:21:23 +03:00
|
|
|
name: Deploy Cloudflare Worker
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2023-11-15 10:46:50 +03:00
|
|
|
- canary
|
2023-07-12 05:21:23 +03:00
|
|
|
paths:
|
2023-10-18 18:30:08 +03:00
|
|
|
- tools/workers/**
|
2023-07-12 05:21:23 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Deploy
|
|
|
|
environment: production
|
|
|
|
steps:
|
2023-10-24 09:00:00 +03:00
|
|
|
- uses: actions/checkout@v4
|
2023-07-12 05:21:23 +03:00
|
|
|
- name: Publish
|
2023-10-28 15:08:49 +03:00
|
|
|
uses: cloudflare/wrangler-action@v3.3.2
|
2023-07-12 05:21:23 +03:00
|
|
|
with:
|
|
|
|
apiToken: ${{ secrets.CF_API_TOKEN }}
|
2023-07-12 11:35:46 +03:00
|
|
|
accountId: ${{ secrets.CF_ACCOUNT_ID }}
|
2023-10-18 18:30:08 +03:00
|
|
|
workingDirectory: 'tools/workers'
|
2023-11-01 12:12:00 +03:00
|
|
|
packageManager: 'yarn'
|