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
11 changes: 7 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ jobs:
CIBW_BUILD_VERBOSITY: 1
MAXMINDDB_REQUIRE_EXTENSION: 1

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: maxminddb-whl-${{ matrix.os }}
path: ./wheelhouse/*.whl

build_sdist:
Expand All @@ -44,8 +45,9 @@ jobs:
- name: Build sdist
run: pipx run build --sdist

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: maxminddb-sdist
path: dist/*.tar.gz

upload_pypi:
Expand All @@ -56,9 +58,10 @@ jobs:
id-token: write
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: artifact
pattern: maxminddb-*
path: dist
merge-multiple: true

- uses: pypa/gh-action-pypi-publish@release/v1