Skip to content

Commit 0d607d7

Browse files
committed
feat: remove tag push trigger from release workflow
- Eliminate the tag push trigger to streamline the release process. - Allow manual triggering of the workflow without dependency on tags.
1 parent f61c20f commit 0d607d7

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Release
22

33
on:
4-
push:
5-
tags:
6-
- 'v*'
74
workflow_dispatch:
85

96
jobs:
@@ -289,4 +286,4 @@ jobs:
289286
echo "" >> $GITHUB_STEP_SUMMARY
290287
echo "### 🔗 Download:" >> $GITHUB_STEP_SUMMARY
291288
echo "- [Release Page](https://github.com/${{ github.repository }}/releases/tag/$VERSION)" >> $GITHUB_STEP_SUMMARY
292-
echo "- [Latest Release](https://github.com/${{ github.repository }}/releases/latest)" >> $GITHUB_STEP_SUMMARY
289+
echo "- [Latest Release](https://github.com/${{ github.repository }}/releases/latest)" >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)