From 2664ff6fd3921430fb7c90411f63f9e065bac78d Mon Sep 17 00:00:00 2001 From: "Kevin A. Mitchell" Date: Fri, 20 Feb 2026 15:40:30 -0600 Subject: [PATCH] github/workflows: Update publish step to enforce trusted publishing - Modified `uv publish` command in `test-and-publish.yml` to include the `--trusted-publishing always` flag. - Ensures consistent application of trusted publishing practices for PyPI. Assisted-by: Codex --- .github/workflows/test-and-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-and-publish.yml b/.github/workflows/test-and-publish.yml index fe5cf82..a257eda 100644 --- a/.github/workflows/test-and-publish.yml +++ b/.github/workflows/test-and-publish.yml @@ -189,4 +189,4 @@ jobs: - name: Build distribution artifacts run: uv build --python 3.11 - name: Publish package to PyPI (Trusted Publishing) - run: uv publish + run: uv publish --trusted-publishing always