Skip to content

Commit 1d076fa

Browse files
authored
Merge pull request #33 from FoamyGuy/include_svg_and_html_files
show svg and html project files
2 parents 87088f6 + 2a4d0f5 commit 1d076fa

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.github/workflows/build-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build-images:
13-
runs-on: ubuntu-24.04
13+
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v2
1616
- run: python3 -m venv build_images_venv

.github/workflows/pre-commit.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ on:
1010

1111
jobs:
1212
pre-commit:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
16-
- name: Set up Python 3.10
15+
- uses: actions/checkout@v4
16+
- name: Set up Python 3.12
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: "3.10"
20-
- uses: pre-commit/action@v2.0.2
19+
python-version: "3.12"
20+
- uses: pre-commit/action@v3.0.1

create_requirement_images.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,11 @@ def asset_path(asset_name):
7070
"mpy": file_icon,
7171
"txt": file_empty_icon,
7272
"toml": file_icon,
73+
"html": file_icon,
7374
"bmp": file_image_icon,
7475
"png": file_image_icon,
7576
"jpg": file_image_icon,
77+
"svg": file_image_icon,
7678
"wav": file_music_icon,
7779
"mp3": file_music_icon,
7880
"mid": file_music_icon,

get_imports.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@
3333
"mpy",
3434
"txt",
3535
"toml",
36+
"html",
3637
"bmp",
3738
"png",
3839
"jpg",
40+
"svg",
3941
"wav",
4042
"mp3",
4143
"mid",

0 commit comments

Comments
 (0)