From 5eeb3663c9794aa5754839879a796f362ac92fbf Mon Sep 17 00:00:00 2001 From: Elliott Hall Date: Tue, 10 Dec 2024 11:31:56 +0000 Subject: [PATCH] move html --- .github/workflows/build.yml | 2 +- .gitignore | 1 + frontend/.eleventy.js | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bed810d7..17e321c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: if: ${{ true }} uses: peaceiris/actions-gh-pages@v3 with: - publish_dir: ../html + publish_dir: ./html github_token: ${{ secrets.GITHUB_TOKEN }} - name: Commit and push diff --git a/.gitignore b/.gitignore index 64b2944f..e60322a0 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,7 @@ netlify/functions/dynamic/* tweets.json _site frontend/html +html /osnap /tests /admin diff --git a/frontend/.eleventy.js b/frontend/.eleventy.js index 4e9603ea..83b474b0 100644 --- a/frontend/.eleventy.js +++ b/frontend/.eleventy.js @@ -220,7 +220,7 @@ module.exports = function (config) { // pathPrefix: "/bcc-11ty/", return { dir: { - output: "html", + output: "../html", } }; };