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
10 changes: 5 additions & 5 deletions .github/workflows/medcat-v2_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
run: python -m build

- name: Upload wheel artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: medcat-v2-wheel
path: |
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
# cp req-gpu.txt bundle-gpu/requirements.txt

- name: Download built medcat wheel for inclusion in bundles
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: medcat-v2-wheel
path: medcat-v2/built-wheel
Expand All @@ -141,7 +141,7 @@ jobs:
# tar -czf medcat-v${{ needs.build.outputs.version_only }}-${{ matrix.python-version }}-gpu.tar.gz -C bundle-gpu .

- name: Upload bundles as artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: bundles-${{ matrix.python-version }}
path: |
Expand All @@ -154,7 +154,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download all artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
path: medcat-v2/artifacts

Expand All @@ -166,7 +166,7 @@ jobs:
ls -l dist/

- name: Download built wheel
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: medcat-v2-wheel
path: medcat-v2/dist-wheel
Expand Down