Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,12 @@ jobs:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$GITHUB_WORKSPACE/ws/install/lib
cmake --build . --config Release --target tesseract_python_doc
- name: archive wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: 'python-wheels-${{ matrix.config.os }}-${{ matrix.config.python_version }}'
path: ws/build/tesseract_python/python/*
- name: archive docs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: 'python-docs-${{ matrix.config.os }}-${{ matrix.config.python_version }}'
path: ws/build/tesseract_python/docs/*
Expand Down Expand Up @@ -270,13 +270,13 @@ jobs:
if %errorlevel% neq 0 exit /b %errorlevel%
- name: archive wheels
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: 'python-wheels-win-${{matrix.config.python_version}}'
path: ws/build/tesseract_python/python
- name: archive logs
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: 'build-logs-win-${{ matrix.config.arch }}-python-${{ matrix.config.python_version }}'
path: "**/*.log"
Expand Down Expand Up @@ -375,13 +375,13 @@ jobs:
pytest -s
- name: archive wheels
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: 'python-macos-${{ matrix.config.arch }}-python-${{matrix.config.python_version}}'
path: ws/build/tesseract_python/python
- name: archive logs
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: 'build-logs-macos-${{ matrix.config.arch }}-python-${{ matrix.config.python_version }}'
path: "**/*.log"
Expand All @@ -401,7 +401,7 @@ jobs:
with:
path: artifacts/main
- name: archive wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: 'python-wheels-all'
path: artifacts/**/wheelhouse/*.whl
Loading