mirror of
https://github.com/movie-web/simple-proxy.git
synced 2025-09-13 05:43:25 +00:00
19 lines
484 B
YAML
19 lines
484 B
YAML
# Docs: https://github.com/marketplace/actions/deploy-to-cloudflare-workers-with-wrangler
|
|
name: Deploy Worker
|
|
on:
|
|
push:
|
|
pull_request:
|
|
repository_dispatch:
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 60
|
|
needs: test
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build & Deploy Worker
|
|
uses: cloudflare/wrangler-action@2.0.0
|
|
with:
|
|
apiToken: ${{ secrets.CF_API_TOKEN }}
|
|
accountId: ${{ secrets.CF_ACCOUNT_ID }}
|