Skip to content

Commit d60ab4c

Browse files
linesightclaude
andcommitted
ci: publish the wheel as a non-zipped artifact for direct download
Bump actions/upload-artifact v4 -> v7 and set archive: false so the built wheel downloads directly from a run's Artifacts page instead of inside a GitHub-generated .zip wrapper. With archive: false the artifact takes the wheel's own filename (e.g. cefpython3-147.0.devN+g<hash>-cpXX-...-<platform>.whl), so the exact version is visible without extracting. Non-zipped uploads require upload-artifact v7+. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 7dc5400 commit d60ab4c

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
xvfb-run python unittests/_test_runner.py
139139
140140
- name: Upload wheel artifact
141-
uses: actions/upload-artifact@v4
141+
uses: actions/upload-artifact@v7
142142
with:
143-
name: cefpython3-py${{ matrix.python-version }}-linux64
144143
path: build/dist/*.whl
144+
archive: false

.github/workflows/ci-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ jobs:
154154
python unittests/_test_runner.py
155155
156156
- name: Upload wheel artifact
157-
uses: actions/upload-artifact@v4
157+
uses: actions/upload-artifact@v7
158158
with:
159-
name: cefpython3-py${{ matrix.python-version }}-macosarm64
160159
path: build/dist/*.whl
160+
archive: false

.github/workflows/ci-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
python unittests/_test_runner.py
121121
122122
- name: Upload wheel artifact
123-
uses: actions/upload-artifact@v4
123+
uses: actions/upload-artifact@v7
124124
with:
125-
name: cefpython3-py${{ matrix.python-version }}-win64
126125
path: build/dist/*.whl
126+
archive: false

0 commit comments

Comments
 (0)