Skip to content

Commit e44c8f8

Browse files
committed
fixed profiles.liquid; added imagemagick install to all workflows
1 parent 4951b29 commit e44c8f8

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/axe.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,9 @@ jobs:
4141
"giscus.repo": "${{ github.repository }}",
4242
"baseurl": ""
4343
}
44-
- name: Install imagemagick (convert)
45-
run: |
46-
sudo apt-get update
47-
sudo apt-get install -y imagemagick
4844
- name: Install and Build 🔧
4945
run: |
46+
sudo apt-get update && sudo apt-get install -y imagemagick
5047
pip3 install --upgrade jupyter
5148
export JEKYLL_ENV=production
5249
bundle exec jekyll build --lsi

.github/workflows/broken-links-site.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
}
3232
- name: Install and Build 🔧
3333
run: |
34+
sudo apt-get update && sudo apt-get install -y imagemagick
3435
pip3 install --upgrade jupyter
3536
export JEKYLL_ENV=production
3637
bundle exec jekyll build --lsi

.github/workflows/deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ jobs:
7575
value: ${{ github.repository }}
7676
- name: Install and Build 🔧
7777
run: |
78+
sudo apt-get update && sudo apt-get install -y imagemagick
7879
pip3 install --upgrade jupyter
7980
export JEKYLL_ENV=production
8081
bundle exec jekyll build --lsi

_layouts/profiles.liquid

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ layout: page
77
{% for category in page.categories %}
88
{% if category.list_name %}
99
{% assign category_name = category.list_name %}
10+
{% endif %}
1011
{% if category.show_name %}
1112
{% assign category_show = category.show_name %}
13+
{% endif %}
1214
<h3>{{ category_show }}</h3>
1315
{% if page.[category_name] %}
1416
{% for profile in page.[category_name] %}

0 commit comments

Comments
 (0)