Skip to content

Commit

Permalink
#65 Fix missing TLS plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandrePTJ committed Nov 19, 2022
1 parent 0b4deb7 commit 7d8bf9a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,12 @@ jobs:
allowUpdates: true
draft: true
artifacts: ${{ matrix.artifact_path }}

# Update packages on continuous 'release'
- if: startsWith(matrix.qt_version, '6') && github.ref_name == 'develop'
name: Create/Update release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
name: Continuous
artifacts: ${{ matrix.artifact_path }}
4 changes: 2 additions & 2 deletions bundle/linux/create_appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -x
set -e

# Run this script once Kemai is built. Install and AppImage will be handle here.
# It just path to Qt and to build directory.
# It just need path to Qt and to build directory.


# Read args
Expand Down Expand Up @@ -37,7 +37,7 @@ chmod +x linuxdeploy*.AppImage
export QMAKE=$qt_path/bin/qmake
export LD_LIBRARY_PATH=$qt_path/lib
export VERSION=$(cat version.txt)
export EXTRA_QT_PLUGINS=platforms,iconengines,wayland-decoration-client,wayland-graphics-integration-client,wayland-shell-integration,platformthemes
export EXTRA_QT_PLUGINS=platforms,iconengines,wayland-decoration-client,wayland-graphics-integration-client,wayland-shell-integration,platformthemes,tls

# Run appimage builder
./linuxdeploy-x86_64.AppImage --appdir AppDir --plugin qt --output appimage
Expand Down

0 comments on commit 7d8bf9a

Please sign in to comment.