From b91f273cb81ca455a9084c6473948c6a5aeffa69 Mon Sep 17 00:00:00 2001 From: Mario Fink Date: Tue, 17 Sep 2024 23:18:01 +0200 Subject: [PATCH] Fix bump actions in /.github/workflows: build source distribution --- .github/workflows/pypi-deploy.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pypi-deploy.yml b/.github/workflows/pypi-deploy.yml index 0813680..d2e2c84 100644 --- a/.github/workflows/pypi-deploy.yml +++ b/.github/workflows/pypi-deploy.yml @@ -59,7 +59,11 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install cython - run: apt-get install cython3 + run: | + sudo apt-get update + sudo apt-get install -y cython3 + env: + DEBIAN_FRONTEND: noninteractive - name: Get wheel configuration files uses: actions/download-artifact@v4.1.7 with: