@@ -18,38 +18,34 @@ jobs:
18
18
with :
19
19
python-version : ' 3.x'
20
20
21
- - name : Install Python dependencies
21
+ - name : 🏅 Install Python dependencies
22
22
run : pip install -r requirements.txt
23
23
24
- - name : Run Python scripts
25
- run : |
26
- echo 🏅 - Generate JSON
27
- python tools/pipe-generateJson.py
24
+ - name : 🏅 Run Python scripts
25
+ run : python tools/pipe-generateJson.py
28
26
29
- echo 🏅 - Generate JSON files
30
- python tools/pipe-generateJsonFiles.py
27
+ - name : 🏅 Generate JSON files
28
+ run : python tools/pipe-generateJsonFiles.py
31
29
32
- echo 🏅 - Generate CSV
33
- python tools/pipe-generateCsv.py
30
+ - name : 🏅 Generate CSV
31
+ run : python tools/pipe-generateCsv.py
34
32
35
- echo 🏅 - Generate Installers
36
- python tools/pipe-generateShFiles.py
33
+ - name : 🏅 Generate Installers
34
+ run : python tools/pipe-generateShFiles.py
37
35
38
- echo 🏅 - Update themes in Gogh file
39
- python tools/pipe-updateThemes.py
36
+ - name : 🏅 Update themes in Gogh file
37
+ run : python tools/pipe-updateThemes.py
40
38
41
- echo 🏅 - Pipeline run date
42
- python tools/pipe.py
39
+ - name : 🏅 Pipeline run date
40
+ run : python tools/pipe.py
43
41
44
42
- name : Set up Deno
45
43
uses : denoland/setup-deno@v2
46
44
with :
47
45
deno-version : v2.x
48
46
49
- - name : Run WCAG generator script with Deno
50
- run : |
51
- echo 🏅 - Running WCAG generator script
52
- deno run --allow-all tools/pipe-generateWcag.js
47
+ - name : 🏅 Run WCAG generator script with Deno
48
+ run : deno run --allow-all tools/pipe-generateWcag.js
53
49
54
50
- name : Commit and push changes
55
51
env :
0 commit comments