Skip to content

Commit 23b5783

Browse files
committed
Fix CI cross arch check
Signed-off-by: Mathias L. Baumann <[email protected]>
1 parent 8b0cf85 commit 23b5783

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/containers/test-installation/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
FROM --platform=${TARGETPLATFORM} python:3.11-slim
77

8-
RUN python -m pip install --upgrade --no-cache-dir pip
8+
RUN apt-get install git -y && python -m pip install --upgrade --no-cache-dir pip
99

1010
COPY dist dist
1111
RUN pip install dist/*.whl && \

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ jobs:
230230
run: python -m build
231231

232232
- name: Upload distribution files
233-
uses: actions/upload-artifact@v3
233+
uses: actions/upload-artifact@v4
234234
with:
235235
name: dist-packages
236236
path: dist/
@@ -294,7 +294,7 @@ jobs:
294294
mike set-default $MIKE_VERSION
295295
296296
- name: Upload site
297-
uses: actions/upload-artifact@v3
297+
uses: actions/upload-artifact@v4
298298
with:
299299
name: docs-site
300300
path: site/

0 commit comments

Comments
 (0)