diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index e185346..fbcef3d 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -34,13 +34,12 @@ 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@v1 with: 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 + working-directory: src - name: Setup Pages id: pages uses: actions/configure-pages@v5 @@ -53,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: