Skip to content

Commit

Permalink
fix: add some forgotten steps
Browse files Browse the repository at this point in the history
  • Loading branch information
GirZ0n committed Feb 21, 2024
1 parent facbdcf commit e88f46c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,21 @@ jobs:
source .venv/bin/activate
pip3 install .
- name: Download JetBrains Mono
run: |
curl -sLO https://github.com/JetBrains/JetBrainsMono/releases/download/v$JETBRAINS_MONO_VERSION/JetBrainsMono-$JETBRAINS_MONO_VERSION.zip
unzip JetBrainsMono-$JETBRAINS_MONO_VERSION.zip
- name: Install JetBrains Mono on MacOS
if: matrix.os == 'macos-latest'
run: cp fonts/ttf/JetBrainsMono-Regular.ttf /Library/Fonts/

- name: Install JetBrains Mono on Linux
if: matrix.os == 'ubuntu-latest'
run: |
sudo cp fonts/ttf/JetBrainsMono-Regular.ttf /usr/local/share/fonts/
fc-cache -f -v
- name: Generate Python Bot GIFs
run: |
source .venv/bin/activate
Expand Down

0 comments on commit e88f46c

Please sign in to comment.