generated from RustLangES/cfworker-template
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (63 loc) · 1.63 KB
/
deploy.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Deploy to production
on:
workflow_dispatch:
push:
branches:
- main
paths:
- ".github/workflows/deploy.yml"
- "wrangler.toml"
- "frontend/**"
- "crates/backend/**"
- "Cargo.toml"
- "Cargo.lock"
- "rust-toolchain.toml"
jobs:
check:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: checks
run: |
cargo fmt --all --check
deploy:
needs: [check]
runs-on: ubuntu-22.04
strategy:
matrix:
path:
- crates/backend
- frontend
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- uses: pnpm/action-setup@v4
if: ${{ matrix.path == 'frontend' }}
with:
version: 9
- name: Install worker-build
run: |
cargo install worker-build
- name: Deploy
uses: cloudflare/wrangler-action@v3
env:
GH_CLIENT_ID: ${{ secrets.GH_APP_CLIENT_ID }}
GH_CLIENT_SECRET: ${{ secrets.GH_APP_CLIENT_SECRET }}
ADMINS: ${{ secrets.ADMINS }}
API_HOST: ${{ secrets.API_HOST }}
HOST: ${{ secrets.API_HOST }}
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
workingDirectory: "${{ matrix.path }}"
wranglerVersion: "3.67.0"
secrets: |
GH_CLIENT_ID
GH_CLIENT_SECRET
ADMINS
API_HOST
HOST