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
10 changes: 5 additions & 5 deletions .github/workflows/build_and_test_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
run: |
./.ci/build_wheel.sh
- name: "Upload release artifacts"
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
pyinstaller -F splitgraph.spec
dist/sgr.exe --version
- name: Upload binary as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: sgr-windows
path: dist/sgr.exe
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
dist/sgr clone --download-all splitgraph/census
dist/sgr checkout splitgraph/census:latest
- name: Upload binary as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: sgr-linux
path: dist/sgr
Expand All @@ -220,7 +220,7 @@ jobs:
pyinstaller -F splitgraph.spec
dist/sgr --version
- name: Upload single-file binary as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: sgr-osx
path: dist/sgr
Expand All @@ -230,7 +230,7 @@ jobs:
dist/sgr-pkg/sgr --version
cd dist/sgr-pkg && tar zcvf ../sgr.tgz .
- name: Upload multi-file binary.gz as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: sgr-osx
path: dist/sgr.tgz
Expand Down