We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 065e80a commit 731693eCopy full SHA for 731693e
1 file changed
.github/workflows/issue1096.yml
@@ -14,8 +14,13 @@ jobs:
14
uses: actions/setup-python@v3
15
with:
16
python-version: '3.10.17'
17
- env:
18
- ACTIONS_SETUP_PYTHON_DISABLE_PIP_UPGRADE: 'true'
+
19
20
- - name: Install dependencies
21
- run: pip install -r requirements.txt
+ - name: Override PIP Configuration
+ run: |
+ 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
26
+ pip install --no-upgrade pip setuptools
0 commit comments