-
Notifications
You must be signed in to change notification settings - Fork 5
52 lines (43 loc) · 1.24 KB
/
wrangler.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: wrangler
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
env:
WRANGLER_SEND_METRICS: 'false'
jobs:
wrangler:
runs-on: ubuntu-latest
name: ${{github.event_name == 'push' && 'publish' || 'build'}}
steps:
- uses: actions/[email protected]
- name: Set wrangler version
id: wrangler
run: echo "version=$(jq -r .devDependencies.wrangler package.json | cut -c2-)" >> "$GITHUB_OUTPUT"
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: 20
cache: 'npm'
- name: Install
run: npm ci
- name: Publish worker
if: github.event_name == 'push'
uses: cloudflare/[email protected]
with:
apiToken: ${{ secrets.CF_API_TOKEN }}
wranglerVersion: ${{ steps.wrangler.outputs.version }}
command: deploy
- name: Publish worker (dry-run)
if: github.event_name != 'push'
uses: cloudflare/[email protected]
with:
apiToken: 'pull_request'
wranglerVersion: ${{ steps.wrangler.outputs.version }}
command: deploy --dry-run=true