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