From 9f8035c2531d92d1e9bf5fe52cb9cf3dbbe102e9 Mon Sep 17 00:00:00 2001 From: F Zamfirov Date: Wed, 23 Jul 2025 09:39:55 +0200 Subject: [PATCH 1/3] Fix: Change working-directory for dependencies to src --- .github/workflows/jekyll.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 6da526f..bfb0a5a 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -40,7 +40,7 @@ jobs: ruby-version: '3.1' # Not needed with a .ruby-version file bundler-cache: true # runs 'bundle install' and caches installed gems automatically cache-version: 0 # Increment this number if you need to re-download cached gems - working-directory: src + working-directory: src - name: Setup Pages id: pages uses: actions/configure-pages@v5 From 6f670db0783023b054c4212be550ea8f2bb7fe85 Mon Sep 17 00:00:00 2001 From: F Zamfirov Date: Wed, 23 Jul 2025 09:59:13 +0200 Subject: [PATCH 2/3] Fix: Ruby versioning --- .github/workflows/jekyll.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index bfb0a5a..7d2bcdc 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -34,10 +34,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Setup Ruby - # https://github.com/ruby/setup-ruby/releases/tag/v1.207.0 - uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4 + uses: ruby/setup-ruby@v1 with: - ruby-version: '3.1' # Not needed with a .ruby-version file + ruby-version: '3.4.4' # Not needed with a .ruby-version file bundler-cache: true # runs 'bundle install' and caches installed gems automatically cache-version: 0 # Increment this number if you need to re-download cached gems working-directory: src From 1ea0efdb752e6a2a46e41344de8cfaead93d9cb8 Mon Sep 17 00:00:00 2001 From: F Zamfirov Date: Wed, 23 Jul 2025 11:12:00 +0200 Subject: [PATCH 3/3] Fix: Change Artifact location --- .github/workflows/jekyll.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 7d2bcdc..fbcef3d 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -52,6 +52,8 @@ jobs: - name: Upload artifact # Automatically uploads an artifact from the './_site' directory by default uses: actions/upload-pages-artifact@v3 + with: + path: src/_site # Deployment job deploy: