We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 156623f commit 4610264Copy full SHA for 4610264
.github/workflows/release-python.yml
@@ -22,14 +22,17 @@ jobs:
22
container:
23
image: ghcr.io/linux-nvme/debian.python:latest
24
steps:
25
+ - name: Install Python (if missing)
26
+ run: apt-get update && apt-get install -y python3 python3-pip
27
+
28
+ - name: Update python dependencies
29
+ run: pip install -U packaging
30
31
- uses: actions/checkout@v4
32
33
- name: Allow workspace
34
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
35
- - name: Update python dependencies
- run: pip install -U packaging
-
36
- name: Build sdist
37
run: pipx run build --sdist
38
0 commit comments