@@ -79,16 +79,46 @@ jobs:
7979 outputs : |
8080 dist/grid-snake.svg
8181 dist/grid-snake-dark.svg?palette=github-dark
82- dist/grid-without-progressbar.svg?hide_stack=true
83- dist/grid-snake-long.svg?snake_size=5
82+ dist/grid-snake-colored.svg?color_snake=orange&color_dots=#bfd6f6,#8dbdff,#64a1f4,#4b91f1,#3c7dd9
8483
8584 - name : ensure the generated file exists
8685 run : |
8786 ls dist
8887 test -f dist/grid-snake.svg
8988 test -f dist/grid-snake-dark.svg
90- test -f dist/grid-without-progressbar.svg
91- test -f dist/grid-snake-long.svg
89+ test -f dist/grid-snake-colored.svg
90+
91+ - name : Generate Without Progressbar
92+ uses : ./svg-only
93+ with :
94+ github_user_name : arthurlobopro
95+ outputs : |
96+ dist/stack/grid-without-progressbar.svg?hide_stack=true
97+ dist/stack/grid-without-progressbar-dark.svg?hide_stack=true&palette=github-dark
98+
99+ - name : ensure the generated file exists
100+ run : |
101+ ls dist/stack
102+ test -f dist/stack/grid-without-progressbar.svg
103+ test -f dist/stack/grid-without-progressbar-dark.svg
104+
105+ - name : Generate Snake Sizes
106+ uses : ./svg-only
107+ with :
108+ github_user_name : arthurlobopro
109+ outputs : |
110+ dist/size/grid-snake-short.svg?snake_size=2
111+ dist/size/grid-snake-short-dark.svg?snake_size=2&palette=github-dark
112+ dist/size/grid-snake-long.svg?snake_size=6
113+ dist/size/grid-snake-long-dark.svg?snake_size=6&palette=github-dark
114+
115+ - name : Ensure Size Outputs Exists
116+ run : |
117+ ls dist/size
118+ test -f dist/size/grid-snake-short.svg
119+ test -f dist/size/grid-snake-short-dark.svg
120+ test -f dist/size/grid-snake-long.svg
121+ test -f dist/size/grid-snake-long-dark.svg
92122
93123 - name : Generate Speed Custom
94124 uses : ./svg-only
@@ -98,14 +128,20 @@ jobs:
98128 dist/speed/grid-snake-slow.svg?speed=slow
99129 dist/speed/grid-snake-normal.svg?speed=normal
100130 dist/speed/grid-snake-fast.svg?speed=fast
131+ dist/speed/grid-snake-slow-dark.svg?speed=slow&palette=github-dark
132+ dist/speed/grid-snake-normal-dark.svg?speed=normal&palette=github-dark
133+ dist/speed/grid-snake-fast-dark.svg?speed=fast&palette=github-dark
101134
102135 - name : Ensure Speed Outputs Exists
103136 run : |
104137 ls dist/speed
105138 test -f dist/speed/grid-snake-slow.svg
106139 test -f dist/speed/grid-snake-normal.svg
107140 test -f dist/speed/grid-snake-fast.svg
108-
141+ test -f dist/speed/grid-snake-slow-dark.svg
142+ test -f dist/speed/grid-snake-normal-dark.svg
143+ test -f dist/speed/grid-snake-fast-dark.svg
144+
109145 - name : Generate Dot Shape Custom
110146 uses : ./svg-only
111147 with :
@@ -114,13 +150,19 @@ jobs:
114150 dist/shape/grid-snake-square.svg?dot_shape=square
115151 dist/shape/grid-snake-rounded-square.svg?dot_shape=rounded-square
116152 dist/shape/grid-snake-circle.svg?dot_shape=circle
117-
153+ dist/shape/grid-snake-square-dark.svg?dot_shape=square&palette=github-dark
154+ dist/shape/grid-snake-rounded-square-dark.svg?dot_shape=rounded-square&palette=github-dark
155+ dist/shape/grid-snake-circle-dark.svg?dot_shape=circle&palette=github-dark
156+
118157 - name : Ensure Speed Outputs Exists
119158 run : |
120159 ls dist/shape
121160 test -f dist/shape/grid-snake-square.svg
122161 test -f dist/shape/grid-snake-rounded-square.svg
123162 test -f dist/shape/grid-snake-circle.svg
163+ test -f dist/shape/grid-snake-square-dark.svg
164+ test -f dist/shape/grid-snake-rounded-square-dark.svg
165+ test -f dist/shape/grid-snake-circle-dark.svg
124166
125167 - uses : crazy-max/ghaction-github-pages@v3.1.0
126168 with :
0 commit comments