-
Notifications
You must be signed in to change notification settings - Fork 4
58 lines (48 loc) · 1.5 KB
/
cloudflare.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
name: Build & Deploy Titan Reactor
on:
workflow_dispatch:
push:
branches:
- dev
- main
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
steps:
- name: Checkout 🛎
uses: actions/checkout@v3
with:
lfs: true
- name: Checkout LFS objects
run: git lfs checkout
- name: Setup node env 🏗
uses: actions/setup-node@v3
with:
node-version: lts/gallium
cache: 'yarn'
- name: Install dependencies 👨🏻💻
run: yarn install
- name: Run build
run: yarn build
env:
VITE_OFFICIAL_PLUGINS_SERVER_URL: ${{ secrets.VITE_OFFICIAL_PLUGINS_SERVER_URL }}
VITE_PLUGINS_RUNTIME_ENTRY_URL: ${{ secrets.VITE_PLUGINS_RUNTIME_ENTRY_URL }}
- name: Publish Titan Reactor
uses: cloudflare/pages-action@1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: titan-reactor
directory: ./dist/titan-reactor
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
- name: Publish Titan Reactor Runtime
uses: cloudflare/pages-action@1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: titan-reactor-runtime
directory: ./dist/runtime
gitHubToken: ${{ secrets.GITHUB_TOKEN }}