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