-
Notifications
You must be signed in to change notification settings - Fork 11
52 lines (50 loc) Β· 1.4 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: π’ Deploy
on:
push:
branches:
- main
jobs:
john:
runs-on: ubuntu-latest
name: π€ π John
steps:
- uses: actions/checkout@v4
- name: π Publish
uses: cloudflare/[email protected]
with:
apiToken: ${{ secrets.CF_API_TOKEN }}
accountId: ${{ secrets.CF_ACCOUNT_ID }}
workingDirectory: 'packages/john'
images:
runs-on: ubuntu-latest
name: πΌοΈ π· Images
steps:
- uses: actions/checkout@v4
- name: π Publish
uses: cloudflare/[email protected]
with:
apiToken: ${{ secrets.CF_API_TOKEN }}
accountId: ${{ secrets.CF_ACCOUNT_ID }}
workingDirectory: 'packages/images'
random:
runs-on: ubuntu-latest
name: βοΈ π Random
steps:
- uses: actions/checkout@v4
- name: π Publish
uses: cloudflare/[email protected]
with:
apiToken: ${{ secrets.CF_API_TOKEN }}
accountId: ${{ secrets.CF_ACCOUNT_ID }}
workingDirectory: 'packages/random'
python:
runs-on: ubuntu-latest
name: πͺοΈ π¦ Python
steps:
- uses: actions/checkout@v4
- name: π Publish
uses: cloudflare/[email protected]
with:
apiToken: ${{ secrets.CF_API_TOKEN }}
accountId: ${{ secrets.CF_ACCOUNT_ID }}
workingDirectory: 'languages/python'