From 33521d8a1b94528519082f748a54975706643a33 Mon Sep 17 00:00:00 2001 From: Henry Catalini Smith Date: Sun, 28 Jul 2024 19:06:07 +0200 Subject: [PATCH] Try this --- .eleventy.js | 4 ++-- .eleventyignore | 2 +- .github/workflows/main.yml | 6 ++++-- tailbone.html => play.html | 0 4 files changed, 7 insertions(+), 5 deletions(-) rename tailbone.html => play.html (100%) diff --git a/.eleventy.js b/.eleventy.js index f4da8bb..042f6d5 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -10,8 +10,8 @@ export default function(eleventyConfig) { "afterBuild", function() { fs.copyFileSync( - "./tailbone.html", - "./_site/tailbone.html", + "./play.html", + "./_site/play.html", ) fs.mkdirSync("./_site/disk2") fs.copyFileSync( diff --git a/.eleventyignore b/.eleventyignore index 47fd124..279b6a2 100644 --- a/.eleventyignore +++ b/.eleventyignore @@ -1,2 +1,2 @@ -tailbone.html +play.html disk2/index.html \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3a8970e..5726092 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,9 +19,11 @@ jobs: - uses: actions/checkout@v4 with: repository: henrycatalinismith/henrycatalinismith.github.io - sparse-checkout: tailbone - path: _site + sparse-checkout: | + tailbone/index.html + path: _root + - run: mv _root/tailbone _site/ - run: yarn build - uses: peaceiris/actions-gh-pages@v3 diff --git a/tailbone.html b/play.html similarity index 100% rename from tailbone.html rename to play.html