Skip to content

Commit 4f62d8b

Browse files
committed
add apt-get update to release
1 parent d5a756d commit 4f62d8b

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/publish_to_pypi.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
python -m pip install --upgrade --disable-pip-version-check pip
2525
python -m pip install --upgrade cython twine build wheel
2626
27+
- name: Install dependencies
28+
run: sudo apt-get update
29+
2730
- name: Install dependencies
2831
run: sudo apt-get install -y libsystemd-dev
2932

@@ -33,4 +36,4 @@ jobs:
3336
- name: Upload to PyPI via Twine
3437
env:
3538
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
36-
run: twine upload --verbose -u '__token__' dist/*
39+
run: twine upload --verbose -u '__token__' dist/*

0 commit comments

Comments
 (0)