Setup publish
This commit is contained in:
10
.github/workflows/web-deploy.yml
vendored
10
.github/workflows/web-deploy.yml
vendored
@@ -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
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user