We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 433315f commit 5ed5f13Copy full SHA for 5ed5f13
.github/workflows/publish.yml
@@ -27,8 +27,15 @@ jobs:
27
28
- name: Update pyproject.toml version (not committed)
29
run: |
30
- sed -i "s/^version = \".*\"/version = \"${TAG_VERSION}\"/" pyproject.toml
+ echo "Current pyproject.toml content:"
31
+ cat pyproject.toml
32
+ echo "TAG_VERSION: ${TAG_VERSION}"
33
34
+ # 更可靠的 sed 命令
35
+ sed -i "s/version = \"[^\"]*\"/version = \"${TAG_VERSION}\"/" pyproject.toml
36
+
37
+ echo "Updated pyproject.toml content:"
38
39
- name: Publish Custom Node
40
uses: Comfy-Org/publish-node-action@v1
41
with:
0 commit comments