From 7e389c8efa06f666cce11cdb27f2eecbd6199f81 Mon Sep 17 00:00:00 2001 From: DuroCodes Date: Mon, 6 May 2024 22:49:30 -0400 Subject: [PATCH] fix: maybe fix build idk at this point --- .github/workflows/github-pages.yml | 2 +- .gitignore | 1 + netlify.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 550a84217..6d762973f 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -18,7 +18,7 @@ jobs: run: bun install - name: Build - run: cd .. && git clone https://github.com/sern-handler/handler sern-handler && cd sern-handler && bun run install && cd ../build && bun run build + run: git clone https://github.com/sern-handler/handler sern-handler && cd sern-handler && bun install && cd .. && bun run build - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 diff --git a/.gitignore b/.gitignore index 6240da8b1..370a3980e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ dist/ # dependencies node_modules/ +sern-handler # logs npm-debug.log* diff --git a/netlify.toml b/netlify.toml index 5d8410d25..5436e5008 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,3 +1,3 @@ [build] publish = "dist" -command = "cd .. && git clone https://github.com/sern-handler/handler sern-handler && cd sern-handler && bun run install && cd ../build && bun run build" \ No newline at end of file +command = "git clone https://github.com/sern-handler/handler sern-handler && cd sern-handler && bun install && cd .. && bun run build" \ No newline at end of file