@@ -440,7 +440,8 @@ jobs:
440
440
poetry export --without-hashes --dev -o requirements_dev.txt
441
441
fi
442
442
if [ ! -f requirements_dev.txt ]; then echo no requirements;exit 0 ;fi
443
- git config --global url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
443
+ git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
444
+ git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf ssh://git@github.com
444
445
pip install -r requirements_dev.txt
445
446
- name : Create directories
446
447
run : |
@@ -489,7 +490,8 @@ jobs:
489
490
poetry export --without-hashes --dev -o requirements_dev.txt
490
491
fi
491
492
if [ ! -f requirements_dev.txt ]; then echo no requirements;exit 0 ;fi
492
- git config --global url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
493
+ git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
494
+ git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf ssh://git@github.com
493
495
pip install -r requirements_dev.txt
494
496
- name : Create directories
495
497
run : |
@@ -571,7 +573,8 @@ jobs:
571
573
- name : Install deps
572
574
if : ${{ steps.checklibs.outputs.ENABLED == 'true' }}
573
575
run : |
574
- git config --global url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
576
+ git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
577
+ git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf ssh://git@github.com
575
578
pip install -r requirements_dev.txt
576
579
- name : Semantic Release Get Next
577
580
id : semantic
@@ -703,7 +706,8 @@ jobs:
703
706
restore-keys : |
704
707
${{ runner.os }}-pip-python3_9
705
708
- run : |
706
- git config --global url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
709
+ git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
710
+ git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf ssh://git@github.com
707
711
pip install -r requirements_dev.txt
708
712
- id : semantic
709
713
if : github.event_name != 'pull_request'
0 commit comments