Skip to content

Commit a176254

Browse files
committed
Merge branch 'develop'
2 parents b8290a8 + 3d8b7d7 commit a176254

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

.github/workflows/electron.yml

+18-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,23 @@ jobs:
2525
- run: npm run electron:build -- --linux -p always
2626
env:
2727
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
2845

2946
build-macos:
3047
needs: build-linux
@@ -43,7 +60,7 @@ jobs:
4360
GH_TOKEN: ${{ secrets.PUBLISHING_TOKEN }}
4461

4562
build-windows:
46-
needs: build-macos
63+
needs: build-linux
4764
name: Create EXE for Windows
4865
runs-on: windows-latest
4966
steps:

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ pnpm-debug.log*
2525

2626
# Electron-builder output
2727
/dist_electron
28+
com.omniaevo.mqtt5-explorer.tar.gz
2829

2930
# Electron-icon-builder output
3031
/build/icons

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mqtt5-explorer",
3-
"version": "1.16.0",
3+
"version": "1.16.1",
44
"private": false,
55
"license": "GPLv3",
66
"description": "A simple MQTT client that supports MQTT5 protocol.",

src/utils/Connection.js

-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ class Connection {
6363
clean: true,
6464
};
6565

66-
console.log(options);
67-
6866
if (this.#properties.username) {
6967
options.username = this.#properties.username;
7068
}

0 commit comments

Comments
 (0)