Skip to content

Commit 731693e

Browse files
authored
Update issue1096.yml
1 parent 065e80a commit 731693e

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/issue1096.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,13 @@ jobs:
1414
uses: actions/setup-python@v3
1515
with:
1616
python-version: '3.10.17'
17-
env:
18-
ACTIONS_SETUP_PYTHON_DISABLE_PIP_UPGRADE: 'true'
17+
1918

20-
- name: Install dependencies
21-
run: pip install -r requirements.txt
19+
- name: Override PIP Configuration
20+
run: |
21+
echo "[global]" > ~/.pip/pip.conf
22+
echo "index-url = https://github.com/gowridurgad/java-sapmachine" >> ~/.pip/pip.conf
23+
24+
- name: Install Dependencies (Skip Pip Upgrade)
25+
run: |
26+
pip install --no-upgrade pip setuptools

0 commit comments

Comments
 (0)