Skip to content

Commit

Permalink
fix(actions): install python deps
Browse files Browse the repository at this point in the history
  • Loading branch information
bend-n committed Sep 27, 2022
1 parent b7a83d9 commit 6117a42
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,20 +45,21 @@ jobs:
with:
lfs: true

- name: prepare python
uses: actions/setup-python@v2
with:
python-version: "3.9"
cache: "pip"

- name: get dependencies
run: |
echo ::group::deps
sudo apt-get update && sudo apt-get install -y moreutils tree imagemagick jq
wget -nv https://github.com/RazrFalcon/resvg/releases/download/v0.23.0/resvg-linux-x86_64.tar.gz -O resvg.tar.gz
tar xvf resvg.tar.gz
pip install -r requirements.txt
echo ::endgroup::
- name: prepare python
uses: actions/setup-python@v2
with:
python-version: "3.9"
cache: "pip"

- name: set mod version
run: jq '.version = "${{ needs.changelog.outputs.tag }}"' mod.json | sponge mod.json

Expand Down

0 comments on commit 6117a42

Please sign in to comment.