File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ jobs:
100100 MEMOS_ARMS_ENV : ${{ secrets.MEMOS_ARMS_ENV }}
101101
102102 - name : Bump version
103- run : npm version ${{ inputs.version }} --no-git-tag-version --allow-same-version
103+ run : npm version ${{ inputs.version }} --no-git-tag-version
104104
105105 - name : Publish to npm
106106 run : npm publish --access public --tag ${{ inputs.tag }}
@@ -113,9 +113,6 @@ jobs:
113113 git config user.name "github-actions[bot]"
114114 git config user.email "github-actions[bot]@users.noreply.github.com"
115115 git add apps/memos-local-openclaw/package.json
116- if ! git diff --staged --quiet; then
117- git commit -m "release: openclaw-plugin v${{ inputs.version }}"
118- fi
116+ git commit -m "release: openclaw-plugin v${{ inputs.version }}"
119117 git tag "openclaw-plugin-v${{ inputs.version }}"
120- # main is branch-protected on MemTensor/MemOS — push only the release tag, not HEAD
121- git push origin "refs/tags/openclaw-plugin-v${{ inputs.version }}"
118+ git push origin HEAD --tags
You can’t perform that action at this time.
0 commit comments