Skip to content
Closed
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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
mkdir -p out
cp dist/predict0.${{ matrix.ext }} \
out/predict0-${{ runner.os }}-${{ runner.arch }}.${{ matrix.ext }}
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: predict0-${{ runner.os }}-${{ runner.arch }}
path: out/*
Expand All @@ -53,7 +53,7 @@ jobs:
run: |
mkdir -p out
cp dist/predict0.dll out/predict0-Windows-X64.dll
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: predict0-Windows-X64
path: out/*
Expand All @@ -66,7 +66,7 @@ jobs:
# the single-file drop-in build, attached so users can grab one .c file
- name: Generate + compile amalgamation
run: make amalgamation-check
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: amalgamation
path: dist/sqlite-predict.c
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
CIBW_BUILD: "cp312-*"
CIBW_SKIP: "*-musllinux*"
CIBW_BUILD_VERBOSITY: "1"
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: wheels-${{ matrix.os }}
path: wheelhouse/*.whl
Expand All @@ -51,7 +51,7 @@ jobs:
run: make python-src
- name: Build sdist
run: pipx run build --sdist --outdir wheelhouse bindings/python
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: sdist
path: wheelhouse/*.tar.gz
Expand Down