chore(ci): Add release artifact CI#40
Merged
jiayuasu merged 13 commits intoapache:mainfrom Sep 9, 2025
Merged
Conversation
a3e533f to
061852d
Compare
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds CI workflows for building release artifacts including source tarballs and documentation. The focus is on preparing infrastructure for releasing SedonaDB by creating packaging workflows adapted from arrow-nanoarrow, and includes fixes to the existing nightly wheel upload process.
Key changes:
- Adds new packaging.yml workflow for building source archives and documentation
- Creates scripts for building source tarballs and documentation
- Fixes nightly wheel upload secret name and adds version stamping
- Updates project metadata and documentation configuration
Reviewed Changes
Copilot reviewed 12 out of 14 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/packaging.yml |
New workflow for building release artifacts, documentation, and managing asf-site updates |
ci/scripts/build-source.sh |
Script for creating source tarball from git archive |
ci/scripts/build-docs.sh |
Script for building documentation with mkdocs |
ci/scripts/set_dev_version.py |
Python script for generating development versions based on git history |
.github/workflows/python-wheels.yml |
Fixes secret name and adds dev version setting for nightly builds |
Cargo.toml |
Updates workspace metadata with correct version and repository information |
python/sedonadb/context.py |
Adds type annotations to function parameters |
docs/requirements.txt |
Simplifies dependencies by removing unused packages |
mkdocs.yml |
Excludes README.md from documentation build |
docs/README.md |
Improves formatting of installation instructions |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds a release tarball and docs tarball build. We need at least the release tarball build because we'll need to release something! These workflows are adapted from arrow-nanoarrow.
This also builds documentation and uploads it to asf-site. We can workshop exactly how this works...the important part for now is to upload anything at all so we can look at our docs before we release.
...also fixes an issue with the nightly uploader where (1) the secret name was wrong and (2) we weren't using a unique version so the nightly wheels would have been rejected if uploaded twice.