Setup publish

This commit is contained in:
Manav Rathi
2025-07-18 18:36:30 +05:30
parent efa82b7fb7
commit e08f97e543
2 changed files with 25 additions and 3 deletions

View File

@@ -93,3 +93,13 @@ jobs:
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
command: pages deploy --project-name=ente --commit-dirty=true --branch=deploy/payments web/apps/payments/dist
- name: Build locker
run: yarn build:locker
- name: Publish locker
uses: cloudflare/wrangler-action@v3
with:
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
command: pages deploy --project-name=ente --commit-dirty=true --branch=deploy/locker web/apps/locker/out

View File

@@ -4,9 +4,21 @@ import React from "react";
const Page: React.FC = () => {
return (
<Stack sx={{ justifyContent: "center", gap: 2 }}>
<EnteLogo height={45} />
<Typography variant="h2">Coming soon</Typography>
<Stack
sx={{
justifyContent: "center",
minHeight: "100vh",
gap: 2,
bgcolor: "accent.main",
color: "white",
textAlign: "center",
}}
>
<EnteLogo height={42} />
<Typography variant="h1" sx={{ fontWeight: "bold" }}>
Locker
</Typography>
<Typography variant="small"> Coming soon </Typography>
</Stack>
);
};