diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 85b7edf..51a32af 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -67,11 +67,16 @@ jobs: steps: - name: Checkout ๐Ÿ›Ž๏ธ uses: actions/checkout@v4 - - name: Setup Ruby + - name: Setup Ruby ๐Ÿ’Ž uses: ruby/setup-ruby@v1 with: - ruby-version: "3.2.2" + ruby-version: "3.3.5" bundler-cache: true + - name: Setup Python ๐Ÿ + uses: actions/setup-python@v5 + with: + python-version: "3.13" + cache: "pip" # caching pip dependencies - name: Update _config.yml โš™๏ธ uses: fjogeleit/yaml-update-action@main with: @@ -81,7 +86,7 @@ jobs: value: ${{ github.repository }} - name: Install and Build ๐Ÿ”ง run: | - pip3 install --upgrade jupyter + pip3 install --upgrade nbconvert export JEKYLL_ENV=production bundle exec jekyll build - name: Purge unused CSS ๐Ÿงน