Commit fe2f4fa pompurin404
committed
1 parent c161afd commit fe2f4fa Copy full SHA for fe2f4fa
File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 61
61
dist/*setup.exe
62
62
dist/*portable.7z
63
63
dist/latest.yml
64
+ body : changelog.md
64
65
token : ${{ secrets.GITHUB_TOKEN }}
65
66
66
67
linux :
@@ -113,6 +114,7 @@ jobs:
113
114
files : |
114
115
dist/*.deb
115
116
dist/*.rpm
117
+ body : changelog.md
116
118
token : ${{ secrets.GITHUB_TOKEN }}
117
119
118
120
macos :
@@ -161,6 +163,7 @@ jobs:
161
163
uses : softprops/action-gh-release@v2
162
164
with :
163
165
files : dist/*.dmg
166
+ body : changelog.md
164
167
token : ${{ secrets.GITHUB_TOKEN }}
165
168
166
169
aur-release-updater :
Original file line number Diff line number Diff line change @@ -4,14 +4,15 @@ import { app } from 'electron'
4
4
import { getControledMihomoConfig } from '../config'
5
5
6
6
export async function checkUpdate ( ) : Promise < string | undefined > {
7
+ const { 'mixed-port' : mixedPort = 7890 } = await getControledMihomoConfig ( )
7
8
const res = await axios . get (
8
9
'https://github.com/pompurin404/mihomo-party/releases/latest/download/latest.yml' ,
9
10
{
10
11
headers : { 'Content-Type' : 'application/octet-stream' } ,
11
12
proxy : {
12
13
protocol : 'http' ,
13
14
host : '127.0.0.1' ,
14
- port : getControledMihomoConfig ( ) [ 'mixed-port' ] || 7890
15
+ port : mixedPort
15
16
}
16
17
}
17
18
)
You can’t perform that action at this time.
0 commit comments