1
0
mirror of https://github.com/konpa/devicon.git synced 2025-09-01 02:22:19 +02:00

Workflow now takes path to geckodriver instead of manually adding it to PATH

This commit is contained in:
Thomas Bui
2020-08-21 10:35:40 -07:00
parent 330c994480
commit d3ef8476e7
4 changed files with 55 additions and 39 deletions

View File

@@ -15,7 +15,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r ./.github/scripts/requirements.txt
- name: Add geckodriver to PATH
run: set PATH=${{ format('{0}/.github/scripts/build_assets/geckodriver.exe', github.workspace) }};%PATH%
- name: Run icomoon_upload.py
run: python ./.github/scripts/icomoon_upload.py ./icomoon.json ./devicon.json ./icons ./ --headless
run: >
python ./.github/scripts/icomoon_upload.py ./.github/scripts/build_assets/geckodriver.exe
./icomoon.json ./devicon.json ./icons ./ --headless