Skip to content

Commit b2eebde

Browse files
committed
Simplify GitHub release notes in CI workflow
Updated the GitHub release creation step to use a simplified title format and removed detailed release notes. This change streamlines the release process by omitting installation instructions and commit history links.
1 parent 1414138 commit b2eebde

File tree

1 file changed

+3
-14
lines changed

1 file changed

+3
-14
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -273,19 +273,7 @@ jobs:
273273
- name: Create GitHub Release
274274
run: |
275275
gh release create ${{ github.ref_name }} \
276-
--title "tzst v${{ steps.version.outputs.version }}" \
277-
--notes "## tzst v${{ steps.version.outputs.version }}
278-
279-
### Installation
280-
281-
#### Python Package
282-
\`\`\`bash
283-
pip install tzst==${{ steps.version.outputs.version }}
284-
\`\`\`
285-
286-
#### Standalone Binaries
287-
Download the appropriate binary for your platform from the assets below. ### Changes
288-
See the [commit history](https://github.com/xixu-me/tzst/commits/${{ github.ref_name }}) for detailed changes."
276+
--title "tzst ${{ steps.version.outputs.version }}"
289277
env:
290278
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
291279

@@ -305,7 +293,8 @@ jobs:
305293
echo "Failed to upload $file"
306294
fi
307295
fi
308-
done if [ $success -eq 0 ]; then
296+
done
297+
if [ $success -eq 0 ]; then
309298
echo "Warning: No files were successfully uploaded"
310299
else
311300
echo "Successfully uploaded $success file(s)"

0 commit comments

Comments
 (0)