This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a commit to branch release-2.0.0-rc1
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/release-2.0.0-rc1 by this push:
new 0e96d52082 [release] Pass Python publishing secrets to reusable
workflow
0e96d52082 is described below
commit 0e96d52082ee13170841dd1de49d7714fb256a42
Author: JingsongLi <[email protected]>
AuthorDate: Fri Jul 31 11:05:49 2026 +0800
[release] Pass Python publishing secrets to reusable workflow
---
.github/workflows/release-python-publish.yml | 5 +++++
.github/workflows/release.yml | 3 +++
2 files changed, 8 insertions(+)
diff --git a/.github/workflows/release-python-publish.yml
b/.github/workflows/release-python-publish.yml
index eaa2af9eb1..c60e742cf2 100644
--- a/.github/workflows/release-python-publish.yml
+++ b/.github/workflows/release-python-publish.yml
@@ -20,6 +20,11 @@ name: Release PyPaimon Publish
on:
workflow_call:
+ secrets:
+ TEST_PYPI_API_TOKEN:
+ required: true
+ PYPI_API_TOKEN:
+ required: true
concurrency:
group: release-python-publish-${{ github.ref }}
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index e9f14bf483..383a011d29 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -127,3 +127,6 @@ jobs:
(needs.java.result == 'success' ||
needs.validation.outputs.release_kind == 'final')
uses: ./.github/workflows/release-python-publish.yml
+ secrets:
+ TEST_PYPI_API_TOKEN: ${{ secrets.TEST_PYPI_API_TOKEN }}
+ PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}