Added setup-python step to build (#2792)
Signed-off-by: George Araújo <george.gcac@gmail.com>
This commit is contained in:
parent
533f2c4fad
commit
6053d3f768
11
.github/workflows/deploy.yml
vendored
11
.github/workflows/deploy.yml
vendored
@ -67,11 +67,16 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout 🛎️
|
- name: Checkout 🛎️
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Setup Ruby
|
- name: Setup Ruby 💎
|
||||||
uses: ruby/setup-ruby@v1
|
uses: ruby/setup-ruby@v1
|
||||||
with:
|
with:
|
||||||
ruby-version: "3.2.2"
|
ruby-version: "3.3.5"
|
||||||
bundler-cache: true
|
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 ⚙️
|
- name: Update _config.yml ⚙️
|
||||||
uses: fjogeleit/yaml-update-action@main
|
uses: fjogeleit/yaml-update-action@main
|
||||||
with:
|
with:
|
||||||
@ -81,7 +86,7 @@ jobs:
|
|||||||
value: ${{ github.repository }}
|
value: ${{ github.repository }}
|
||||||
- name: Install and Build 🔧
|
- name: Install and Build 🔧
|
||||||
run: |
|
run: |
|
||||||
pip3 install --upgrade jupyter
|
pip3 install --upgrade nbconvert
|
||||||
export JEKYLL_ENV=production
|
export JEKYLL_ENV=production
|
||||||
bundle exec jekyll build
|
bundle exec jekyll build
|
||||||
- name: Purge unused CSS 🧹
|
- name: Purge unused CSS 🧹
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user