Skip to content

Commit 131b6c1

Browse files
committed
fix shell permission
1 parent 9be6947 commit 131b6c1

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/build.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,10 @@ jobs:
4040
- name: Get History
4141
id: get_history
4242
run: |
43+
chmod +x history.sh
4344
output=$(./history.sh)
44-
echo "::set-output name=history::$output"
45+
trimmed_output=$(echo "$output" | awk '{$1=$1};1')
46+
echo "::set-output name=history::$trimmed_output"
4547
4648
- name: Create Release
4749
id: create_release

HISTORY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## 更新日志
22

3-
### v1.2.4
3+
### v1.2.5
44

55
* 配置地址兼容处理
66
* 部分手机设备样式兼容处理

version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version_code": 16909312, "version_name": "v1.2.4"}
1+
{"version_code": 16909568, "version_name": "v1.2.5"}

0 commit comments

Comments
 (0)