Skip to content

Commit 40fbd3b

Browse files
authored
Merge pull request #138 from gisce/fix_ubuntu_20
Fix ubuntu 20
2 parents dfdbbe3 + 428e8d5 commit 40fbd3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
- name: Set up Python 2.7
1515
run: |
1616
sudo apt update
17-
sudo apt install python2 python-pip
17+
sudo apt install python2 python2-dev
18+
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
19+
sudo python2 get-pip.py
1820
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 1
1921
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 2
2022
printf '1\n' | sudo update-alternatives --config python
21-
cd /usr/bin
22-
sudo ln -s /usr/bin/pip2 ./pip
2323
- name: Get tag
2424
id: tag
2525
uses: dawidd6/action-get-tag@v1

0 commit comments

Comments
 (0)