From 75c2df0506b7553c9675e8a3186db24ff2124d04 Mon Sep 17 00:00:00 2001 From: Henry Catalini Smith Date: Mon, 29 Jul 2024 06:55:15 +0200 Subject: [PATCH] Undo yesterday --- .eleventy.js | 5 ++--- .eleventyignore | 2 +- .github/workflows/main.yml | 8 -------- play/index.html => index.html | 0 4 files changed, 3 insertions(+), 12 deletions(-) rename play/index.html => index.html (100%) diff --git a/.eleventy.js b/.eleventy.js index 38a1ea8..f95285b 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -9,10 +9,9 @@ export default function(eleventyConfig) { eleventyConfig.on( "afterBuild", function() { - fs.mkdirSync("./_site/play") fs.copyFileSync( - "./play/index.html", - "./_site/play/index.html", + "./index.html", + "./_site/index.html", ) fs.mkdirSync("./_site/disk2") fs.copyFileSync( diff --git a/.eleventyignore b/.eleventyignore index 306482b..ea0b69b 100644 --- a/.eleventyignore +++ b/.eleventyignore @@ -1,2 +1,2 @@ -play/index.html +index.html disk2/index.html \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5726092..c5231d7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,14 +16,6 @@ jobs: - run: yarn install - - uses: actions/checkout@v4 - with: - repository: henrycatalinismith/henrycatalinismith.github.io - sparse-checkout: | - tailbone/index.html - path: _root - - - run: mv _root/tailbone _site/ - run: yarn build - uses: peaceiris/actions-gh-pages@v3 diff --git a/play/index.html b/index.html similarity index 100% rename from play/index.html rename to index.html