Skip to content
Merged
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 @@ -159,12 +159,12 @@ jobs:
cmake --build . --config Release --target tesseract_python_doc
- name: archive wheels
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
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@v7
with:
name: 'python-docs-${{ matrix.config.os }}-${{ matrix.config.python_version }}'
path: ws/build/tesseract_python/docs/*
Expand Down Expand Up @@ -278,13 +278,13 @@ jobs:
if %errorlevel% neq 0 exit /b %errorlevel%
- name: archive wheels
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
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@v7
with:
name: 'build-logs-win-${{ matrix.config.arch }}-python-${{ matrix.config.python_version }}'
path: "**/*.log"
Expand Down Expand Up @@ -388,13 +388,13 @@ jobs:
pytest -s
- name: archive wheels
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
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@v7
with:
name: 'build-logs-macos-${{ matrix.config.arch }}-python-${{ matrix.config.python_version }}'
path: "**/*.log"
Expand All @@ -414,7 +414,7 @@ jobs:
with:
path: artifacts/main
- name: archive wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: 'python-wheels-all'
path: artifacts/**/wheelhouse/*.whl
Loading