Compare commits

..

2 Commits

Author SHA1 Message Date
henry.chen
3c4fa6d08a chore(release): 3.0.2 2025-07-25 09:35:43 +08:00
henry.chen
ccb5e4546e fix: ci 2025-07-25 09:35:40 +08:00
2 changed files with 12 additions and 0 deletions

View File

@@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [3.0.2](https://github.com/eiblog/eiblog/compare/v3.0.1...v3.0.2) (2025-07-25)
### Bug Fixes
* ci ([ccb5e45](https://github.com/eiblog/eiblog/commit/ccb5e4546e224182c949e72e9eae82fbbe1a02fe))
### [3.0.1](https://github.com/eiblog/eiblog/compare/v3.0.0...v3.0.1) (2025-07-25)

View File

@@ -6,6 +6,11 @@ _tag="$1"
_arch=$(go env GOARCH)
for file in cmd/*; do
# Skip if not a directory
if [ ! -d "$file" ]; then
continue
fi
app="$(basename $file)";
# tar platform
for os in linux darwin windows; do