-
Notifications
You must be signed in to change notification settings - Fork 6
41 lines (33 loc) · 1.19 KB
/
web-deploy-photos.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
name: "Deploy Ente Photos (Web)"
on: [push]
jobs:
deploy:
runs-on: ubuntu-latest
defaults:
run:
working-directory: web
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
repository: ente-io/ente
submodules: recursive
- name: Setup node and enable yarn caching
uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
cache-dependency-path: "web/yarn.lock"
- name: Install dependencies
run: yarn install
- name: Build photos
run: NEXT_PUBLIC_ENTE_ENDPOINT=${{ secrets.API_ENDPOINT_URL }} yarn build:photos
- name: Publish photos
uses: cloudflare/pages-action@1
with:
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
projectName: ente-web-photos
branch: deploy/photos
directory: web/apps/photos/out
wranglerVersion: "3"