Skip to content
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.

Commit

Permalink
ci: merge into single stage the installation of dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
iruzo committed May 26, 2024
1 parent 19472ba commit fe88331
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@ jobs:
cache: "pip"

- name: Install dependencies
run: pip install -r requirements.txt

- name: Install colloid specific dependencies
run: sudo apt update && sudo apt install -y sassc inkscape optipng
run: |
sudo apt update && sudo apt install -y sassc inkscape optipng
pip install -r requirements.txt
- name: Generate themes
run: |
Expand Down

0 comments on commit fe88331

Please sign in to comment.