diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 8e11d39..01c4b75 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -50,15 +50,18 @@ jobs: ruby-version: '3.3' # 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: ./codewithrockstar.com - name: Setup Pages id: pages - uses: actions/configure-pages@v5 + uses: actions/configure-pages@v4 + with: + working-directory: ./codewithrockstar.com - name: Build with Jekyll # Outputs to the './_site' directory by default - run: | - cd ./codewithrockstar.com - bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" + working-directory: ./codewithrockstar.com + run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" + env: JEKYLL_ENV: production