Skip to content

Commit a0413a3

Browse files
committed
Fix CI workflows for themes with spaces in name
1 parent 09a9e23 commit a0413a3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/themes-screenshot-on-pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
3636
# Setup selected theme in config.yaml
3737
echo "Using theme $theme"
38-
sed -i "/THEME:/c\ THEME: $theme" config.yaml
38+
sed -i '/THEME:/c\ THEME: "$theme"' config.yaml
3939
4040
# For tests there is no real HW: use simulated LCD mode
4141
# Check if theme is for 5"

.github/workflows/themes-screenshot-on-push.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
4747
# Setup selected theme in config.yaml
4848
echo "Using theme $theme"
49-
sed -i "/THEME:/c\ THEME: $theme" config.yaml
49+
sed -i '/THEME:/c\ THEME: "$theme"' config.yaml
5050
5151
# For tests there is no real HW: use simulated LCD mode
5252
# Check if theme is for 5"

0 commit comments

Comments
 (0)