Skip to content
Open
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: make lancedb-native

- name: Upload LanceDB native library
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: lancedb-native-linux-amd64
path: .native
Expand Down Expand Up @@ -293,7 +293,7 @@ jobs:
run: make ui-test

- name: Upload built UI
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ui-dist
path: internal/ui/dist
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
run: make ui-test

- name: Upload LanceDB native library
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: release-lancedb-native-linux-amd64
path: .native
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
sha256sum graphit-linux-amd64.tar.gz > graphit-linux-amd64.sha256

- name: Upload Linux artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: linux-amd64
path: |
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
shasum -a 256 graphit-darwin-arm64.tar.gz > graphit-darwin-arm64.sha256

- name: Upload macOS artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: darwin-arm64
path: |
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
sha256sum graphit-windows-amd64.tar.gz > graphit-windows-amd64.sha256

- name: Upload Windows artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: windows-amd64
path: |
Expand Down
Loading