Skip to content

Commit e6a5f9c

Browse files
authored
add gulp action for building devicon.min.css
1 parent 047ab67 commit e6a5f9c

3 files changed

Lines changed: 1635 additions & 287 deletions

File tree

.github/workflows/build_icons.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@ jobs:
1414
- uses: actions/checkout@v2
1515
with:
1616
ref: ${{ github.head_ref }}
17-
- name: Set up Python 3.8
17+
- name: Setup Python v3.8
1818
uses: actions/setup-python@v2
1919
with:
2020
python-version: 3.8
21-
- name: Install dependencies
21+
- name: Install dependencies (python, pip, npm)
2222
run: |
2323
python -m pip install --upgrade pip
2424
pip install -r ./.github/scripts/requirements.txt
25+
npm install
2526
- name: Run icomoon_upload.py
2627
run: >
2728
python ./.github/scripts/icomoon_upload.py
@@ -32,6 +33,9 @@ jobs:
3233
with:
3334
name: geckodriver-log
3435
path: ./geckodriver.log
36+
- name: Running gulp default task for building devicon.min.css
37+
run: |
38+
gulp default
3539
- name: Commit changes
3640
uses: stefanzweifel/git-auto-commit-action@v4
3741
with:

0 commit comments

Comments
 (0)