parent
c8a66c60df
commit
45081e2fd7
|
@ -9,12 +9,15 @@ jobs:
|
|||
pack:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup nodejs
|
||||
uses: actions/setup-node@v4
|
||||
working-directory: snap-client
|
||||
with:
|
||||
node-version: 20
|
||||
cache: npm
|
||||
cache-dependency-path: ./snap-client/package-lock.json
|
||||
|
||||
- name: Install deps
|
||||
working-directory: snap-client
|
||||
|
@ -27,4 +30,7 @@ jobs:
|
|||
- name: Move into public folder
|
||||
run: cp -r snap-client/build snap-server/public
|
||||
|
||||
|
||||
- name: Commit changes
|
||||
uses: EndBug/add-and-commit@v9
|
||||
with:
|
||||
message: "[Update] build newest client package"
|
||||
|
|
|
@ -67,7 +67,7 @@ function App() {
|
|||
|
||||
useEffect(() => {
|
||||
document.title = config?.preview_title ?? PREVIEW_TITLE_PLACEHOLDER;
|
||||
}, []);
|
||||
}, [config?.preview_title]);
|
||||
|
||||
return (
|
||||
<div className="w-full h-full flex flex-col items-center bg-deep-gray">
|
||||
|
|
Loading…
Reference in New Issue