Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Soltus committed Apr 5, 2024
1 parent f2df9eb commit 67db95a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Gather SiYuan Release Information
id: release_info_siyuan
run: |
changelog=$(python scripts/parse-changelog.py -t v${{ steps.syv.outputs.value }} -a v${{ steps.sypv.outputs.value }} siyuan-note/siyuan)
changelog=$(python scripts/parse-changelog.py -t v${{ steps.syv.outputs.value }} -a "${{ steps.sypv.outputs.value }}" siyuan-note/siyuan)
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
echo "release_body_siyuan<<$EOF" >> $GITHUB_ENV
echo "$changelog" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sillot",
"version": "0.28.16",
"version": "0.28.17",
"syv": "3.0.8",
"sypv": "[3.0.7, 3.0.6]",
"description": "Build Your Eternal Digital Garden",
Expand Down
6 changes: 3 additions & 3 deletions scripts/parse-changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ def generate_msg_from_repo(repo_name, tag_name, otherReleaseArray):
{"title": issue.title, "url": issue.html_url}
)
generate_msg(desc_mapping)
print('''---
''')
arr = quote_versions_v2(otherReleaseArray)
if len(arr) > 0:
for v in arr:
print(f'''
## ✅ [{v}](https://github.com/siyuan-note/siyuan/releases/tag/{v}) 也包含在此次更新💫
print(f'''## ✅ [{v}](https://github.com/siyuan-note/siyuan/releases/tag/{v}) 也包含在此次更新💫
''')

Expand Down

0 comments on commit 67db95a

Please sign in to comment.