diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 009648f9..506bf7a6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -99,6 +99,7 @@ jobs: with: tagName: v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version releaseName: v__VERSION__ + includeDebug: true args: ${{ matrix.settings.args }} - name: remove windows certificate diff --git a/app/app/[lng]/page.tsx b/app/app/[lng]/page.tsx index 4f7ef375..8a08a059 100644 --- a/app/app/[lng]/page.tsx +++ b/app/app/[lng]/page.tsx @@ -21,7 +21,7 @@ import { BiTestTube } from "react-icons/bi"; import { FaBlog } from "react-icons/fa"; import Image from "next/image"; import { useTranslations } from "next-intl"; -import { isInApp } from "@/constants"; +import { useIsTauri } from "@/lib/hooks"; import { allPosts } from "contentlayer/generated"; export default function Home({ @@ -32,6 +32,7 @@ export default function Home({ }; }) { const t = useTranslations(); + const isTauri = useIsTauri(); const post = allPosts .filter((post) => post.slug.startsWith(`${params.lng}/blog`)) @@ -106,7 +107,7 @@ export default function Home({
{t("common.play")}

- +