Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/medcat-v2-lib-stability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
df -h

- name: Upload HF cache
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: hf-cache
path: ~/.cache/huggingface
Expand All @@ -53,7 +53,7 @@ jobs:

steps:
- uses: actions/checkout@v6
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: hf-cache
path: ~/.cache/huggingface
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/medcat-v2_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
run: python -m build

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

- name: Download built medcat wheel for inclusion in bundles
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: medcat-v2-wheel
path: medcat-v2/built-wheel
Expand All @@ -148,7 +148,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@v6
uses: actions/upload-artifact@v7
with:
name: bundles-${{ matrix.python-version }}
path: |
Expand All @@ -161,7 +161,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download all artifacts
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
path: medcat-v2/artifacts

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

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