File tree 4 files changed +20
-4
lines changed
4 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 25
25
- run : npm run electron:build -- --linux -p always
26
26
env :
27
27
GH_TOKEN : ${{ secrets.PUBLISHING_TOKEN }}
28
+ # This step was done by the AppImage build step
29
+ # - run: npm run electron:build -- --linux dir
30
+ - run : tar -czf com.omniaevo.mqtt5-explorer.tar.gz dist_electron/linux-unpacked
31
+ - name : Get release
32
+ id : get_release
33
+ uses :
bruceadams/[email protected]
34
+ env :
35
+ GITHUB_TOKEN : ${{ secrets.PUBLISHING_TOKEN }}
36
+ - name : Upload linux unpacked
37
+ uses : actions/upload-release-asset@v1
38
+ env :
39
+ GITHUB_TOKEN : ${{ secrets.PUBLISHING_TOKEN }}
40
+ with :
41
+ upload_url : ${{ steps.get_release.outputs.upload_url }}
42
+ asset_path : ./com.omniaevo.mqtt5-explorer.tar.gz
43
+ asset_name : com.omniaevo.mqtt5-explorer.tar.gz
44
+ asset_content_type : application/x-gzip
28
45
29
46
build-macos :
30
47
needs : build-linux
43
60
GH_TOKEN : ${{ secrets.PUBLISHING_TOKEN }}
44
61
45
62
build-windows :
46
- needs : build-macos
63
+ needs : build-linux
47
64
name : Create EXE for Windows
48
65
runs-on : windows-latest
49
66
steps :
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ pnpm-debug.log*
25
25
26
26
# Electron-builder output
27
27
/dist_electron
28
+ com.omniaevo.mqtt5-explorer.tar.gz
28
29
29
30
# Electron-icon-builder output
30
31
/build /icons
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " mqtt5-explorer" ,
3
- "version" : " 1.16.0 " ,
3
+ "version" : " 1.16.1 " ,
4
4
"private" : false ,
5
5
"license" : " GPLv3" ,
6
6
"description" : " A simple MQTT client that supports MQTT5 protocol." ,
Original file line number Diff line number Diff line change @@ -63,8 +63,6 @@ class Connection {
63
63
clean : true ,
64
64
} ;
65
65
66
- console . log ( options ) ;
67
-
68
66
if ( this . #properties. username ) {
69
67
options . username = this . #properties. username ;
70
68
}
You can’t perform that action at this time.
0 commit comments