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
116 changes: 106 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,16 @@ on:
- "v*"

permissions:
contents: write
id-token: write
contents: read

concurrency:
group: release-${{ github.ref }}
cancel-in-progress: false

jobs:
release:
name: Validate, build, and publish
build:
name: Validate and build
runs-on: ubuntu-latest
environment:
name: release
steps:
- name: Check out tagged source
uses: actions/checkout@v7
Expand Down Expand Up @@ -94,12 +91,111 @@ jobs:
"from akms.orchestrator import run_pipeline; print('embedded runtime import: OK')"
.venv-release/bin/python -m pytest tests/public_smoke/runtime -q

- name: Publish to PyPI through trusted publishing
if: vars.PUBLISH_TO_PYPI == 'true'
uses: pypa/gh-action-pypi-publish@release/v1
- name: Hand the verified distributions to the publish jobs
uses: actions/upload-artifact@v7.0.1
with:
name: distributions
path: dist
if-no-files-found: error
retention-days: 7

# One publish job per package, each in its own environment.
#
# PyPI enforces uniqueness on the (owner, repository, workflow, environment)
# tuple for *pending* publishers, so four packages released from one repo by
# one workflow cannot share a single environment — only the first of them can
# be registered. A job may declare exactly one environment, so the publish
# step has to fan out rather than upload all four from one job.
#
# This is the better shape on its own terms anyway: each package's OIDC token
# is scoped to an environment that can publish that package and nothing else.
publish:
name: Publish ${{ matrix.package }} to PyPI
if: vars.PUBLISH_TO_PYPI == 'true'
needs: build
runs-on: ubuntu-latest
permissions:
id-token: write
environment:
name: pypi-${{ matrix.package }}
url: https://pypi.org/p/${{ matrix.package }}
strategy:
fail-fast: false
matrix:
include:
- package: akms
prefix: "akms-"
- package: akms-learn
prefix: "akms_learn-"
- package: akms-nodes-gen
prefix: "akms_nodes_gen-"
- package: akms-failure-memory
prefix: "akms_failure_memory-"
steps:
- name: Download the verified distributions
uses: actions/download-artifact@v8.0.1
with:
name: distributions
path: dist

- name: Isolate this package's distributions
shell: bash
run: |
set -euo pipefail
mkdir -p upload
cp dist/packages/${{ matrix.prefix }}* upload/
# Exactly one wheel and one sdist. A prefix that silently matched
# nothing would publish an empty directory, and one that over-matched
# would push a sibling package into the wrong project. Both are quiet
# failures worth making loud.
found=$(find upload -type f | wc -l | tr -d ' ')
if [ "$found" -ne 2 ]; then
echo "expected 2 distributions for ${{ matrix.package }}, found ${found}:" >&2
find upload -type f >&2
exit 1
fi
ls -l upload

- name: Publish through trusted publishing
uses: pypa/gh-action-pypi-publish@v1.14.2
with:
packages-dir: dist/packages/
packages-dir: upload/
verbose: true
# Makes a re-run idempotent. PyPI caps how many *pending* publishers
# one account may hold, which is fewer than the four projects here,
# so the first release has to publish in waves: register what fits,
# publish (which converts those pending publishers into normal ones
# and frees the slots), register the rest, run again. Without this,
# the second run fails on the packages the first one already
# uploaded. It also makes recovery from a partial upload — a network
# failure part-way through the matrix — a re-run rather than a
# version bump.
#
# This cannot overwrite anything: PyPI rejects a duplicate filename
# whatever its contents, and the flag only swallows that rejection.
skip-existing: true

github-release:
name: Create GitHub release
needs: [build, publish]
# `publish` is skipped whenever PUBLISH_TO_PYPI is unset, and a skipped
# dependency would otherwise skip this job too. Run whenever the build
# succeeded and nothing actually failed, so a validation-only tag still
# cuts the release — but never publish a release after a failed upload.
if: >-
always()
&& needs.build.result == 'success'
&& !contains(needs.*.result, 'failure')
&& !contains(needs.*.result, 'cancelled')
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Download the verified distributions
uses: actions/download-artifact@v8.0.1
with:
name: distributions
path: dist

- name: Create GitHub release
uses: softprops/action-gh-release@v3
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to the public AKMS packages are documented here. The
public history begins with the first curated release; earlier private
development is intentionally not replayed.

## [0.3.0] — unreleased (release date set at publication)
## [0.3.0] — 2026-08-31

### Added
- First public research preview: `akms` (deterministic knowledge compiler,
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# To cite AKMS, use the metadata below.
# TODO: set `repository-code` and `date-released` at publication time — the
# public repository URL is not final until the maintainer publishes the tree.
cff-version: 1.2.0
message: "If you use AKMS in your research, please cite it as below."
title: "AKMS: Adaptive Knowledge Management System"
Expand All @@ -10,6 +8,8 @@ authors:
given-names: Shmuel
email: shmuliko@technion.ac.il
version: 0.3.0
date-released: 2026-08-31
repository-code: "https://github.com/CEmM2/AKMS"
abstract: >-
A deterministic global-local knowledge compiler: typed knowledge nodes,
graph compilation, task-scoped projections, and structured evidence
Expand Down