Merge pull request #4 from ovflowd/patch-1 #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Worker | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
deploy: | |
name: Deploy Cloudflare Worker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 | |
- name: Deploy to Staging | |
if: github.event_name == 'push' | |
uses: cloudflare/wrangler-action@09fc6b504568cf179b085df24393f237fea6c7f6 | |
with: | |
apiToken: ${{ secrets.CF_API_TOKEN }} | |
command: deploy --env staging | |
- name: Deploy to Production | |
if: github.event_name == 'workflow_dispatch' | |
uses: cloudflare/wrangler-action@09fc6b504568cf179b085df24393f237fea6c7f6 | |
with: | |
apiToken: ${{ secrets.CF_API_TOKEN }} | |
command: deploy --env prod | |