This is an automated email from the ASF dual-hosted git repository.
chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fory.git
The following commit(s) were added to refs/heads/main by this push:
new d9f300fca fix(javascript): fix hps release (#3577)
d9f300fca is described below
commit d9f300fca20b9ccbc44013561dcba67bf71d73bc
Author: Shawn Yang <[email protected]>
AuthorDate: Thu Apr 16 14:37:57 2026 +0800
fix(javascript): fix hps release (#3577)
## Why?
## What does this PR do?
## Related issues
## AI Contribution Checklist
- [ ] Substantial AI assistance was used in this PR: `yes` / `no`
- [ ] If `yes`, I included a completed [AI Contribution
Checklist](https://github.com/apache/fory/blob/main/AI_POLICY.md#9-contributor-checklist-for-ai-assisted-prs)
in this PR description and the required `AI Usage Disclosure`.
- [ ] If `yes`, my PR description includes the required `ai_review`
summary and screenshot evidence of the final clean AI review results
from both fresh reviewers on the current PR diff or current HEAD after
the latest code changes.
## Does this PR introduce any user-facing change?
- [ ] Does this PR introduce any public API change?
- [ ] Does this PR introduce any binary protocol compatibility change?
## Benchmark
---
.github/workflows/release-compiler.yaml | 4 ++--
.github/workflows/release-python.yaml | 4 ++--
javascript/packages/hps/package.json | 1 +
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/release-compiler.yaml
b/.github/workflows/release-compiler.yaml
index c9832ea86..b7f9b6134 100644
--- a/.github/workflows/release-compiler.yaml
+++ b/.github/workflows/release-compiler.yaml
@@ -55,7 +55,7 @@ jobs:
python -m build --sdist --wheel
- name: Publish to TestPyPI
- uses: pypa/gh-action-pypi-publish@release/v1
+ uses:
pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.14.0
if: ${{ contains(github.ref_name, '-') }}
with:
repository-url: https://test.pypi.org/legacy/
@@ -65,7 +65,7 @@ jobs:
packages-dir: compiler/dist
- name: Publish to PyPI
- uses: pypa/gh-action-pypi-publish@release/v1
+ uses:
pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.14.0
if: ${{ !contains(github.ref_name, '-') }}
with:
skip-existing: true
diff --git a/.github/workflows/release-python.yaml
b/.github/workflows/release-python.yaml
index eb97c0564..0b810b6c7 100644
--- a/.github/workflows/release-python.yaml
+++ b/.github/workflows/release-python.yaml
@@ -52,7 +52,7 @@ jobs:
echo "head_branch: ${{ github.event.workflow_run.head_branch }}"
- name: Publish to TestPyPI
- uses: pypa/gh-action-pypi-publish@release/v1
+ uses:
pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.14.0
if: startsWith(github.event.workflow_run.head_branch, 'v') &&
contains(github.event.workflow_run.head_branch, '-')
with:
repository-url: https://test.pypi.org/legacy/
@@ -62,7 +62,7 @@ jobs:
packages-dir: dist
- name: Publish to PyPI
- uses: pypa/gh-action-pypi-publish@release/v1
+ uses:
pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.14.0
if: startsWith(github.event.workflow_run.head_branch, 'v') &&
!contains(github.event.workflow_run.head_branch, '-')
with:
skip-existing: true
diff --git a/javascript/packages/hps/package.json
b/javascript/packages/hps/package.json
index 6e8f9dd06..dceea6471 100644
--- a/javascript/packages/hps/package.json
+++ b/javascript/packages/hps/package.json
@@ -16,6 +16,7 @@
"prepublishOnly": "npm run build"
},
"license": "Apache-2.0",
+ "repository": "[email protected]:apache/fory.git",
"dependencies": {
"bindings": "~1.2.1",
"fs-extra": "^11.3.0",
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]