Skip to content

Commit 3a3bd91

Browse files
Merge pull request #47 from memgraph/MG-fix-release-workflow
Fix release workflow on Ubuntu 20.04
2 parents c01a9b0 + 1df17b6 commit 3a3bd91

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install system dependencies
4141
run: |
4242
sudo apt install -y libpython${{ matrix.python_version }} python3-pip python3-setuptools
43-
sudo pip3 install networkx pytest pyopenssl sphinx
43+
sudo pip3 install --upgrade networkx pytest pyopenssl sphinx
4444
sudo ln -s /dev/null /etc/systemd/system/memgraph.service # Prevents Memgraph from starting.
4545
sudo dpkg -i ~/memgraph/memgraph.deb
4646
- uses: actions/checkout@v2

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ jobs:
3535
- name: Install system dependencies (Ubuntu 20.04)
3636
run: |
3737
sudo apt install -y libpython${{ matrix.python_version }} python3-pip python3-setuptools
38-
python3 -m pip install --upgrade
39-
sudo pip3 install networkx pytest pyopenssl sphinx
38+
sudo pip3 install --upgrade networkx pytest pyopenssl sphinx
4039
mkdir ~/memgraph
4140
curl -L https://download.memgraph.com/memgraph/v${{matrix.mgversion}}/ubuntu-20.04/memgraph_${{matrix.mgversion}}-1_amd64.deb > ~/memgraph/memgraph.deb
4241
sudo ln -s /dev/null /etc/systemd/system/memgraph.service # Prevents Memgraph from starting.

0 commit comments

Comments
 (0)