Skip to content

Commit ba4fd9b

Browse files
authored
Merge pull request #64 from Krzmbrzl/fix-release-dispatch
CI: Fix release dispatch
2 parents 8b2015b + d9433a8 commit ba4fd9b

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ on: [ push, pull_request ]
55
# Note: As of now the strategy property is not supported when using reusable workflows, so we can't use a build
66
# matrix to create the different build cases (see https://docs.github.com/en/actions/using-workflows/reusing-workflows#limitations)
77
jobs:
8-
build_1_5_634:
8+
build_1_5_857:
99
uses: ./.github/workflows/build_and_publish.yml
1010
with:
11-
mumble_version: "v1.5.634"
11+
mumble_version: "v1.5.857"
1212
docker_version: '0'
1313
publish: false
1414
update_latest: true

.github/workflows/upstream_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
mumble_version: ${{ github.event.client_payload.tag }}
1212
docker_version: '0'
1313
publish: true
14-
update_latest: ${{ github.event.client_payload.is_latest }}
14+
update_latest: ${{ github.event.client_payload.is_latest == 'true' }}
1515
platforms: "linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v8"
1616
secrets: inherit

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
1212
'^libprotobuf[0-9]+$' \
1313
libavahi-compat-libdnssd1 \
1414
ca-certificates \
15+
sqlite3 \
16+
mysql-client \
17+
libpq5 \
1518
&& export QT_VERSION="$( /mumble/scripts/choose_qt_version.sh )" \
1619
&& /mumble/scripts/install_qt.sh \
1720
# Workaround for systems like CentOS 7 which won't load libQt5Core.so as expected:
@@ -46,6 +49,9 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
4649
libzeroc-ice-dev \
4750
python3 \
4851
git \
52+
libsqlite3-dev \
53+
libmysqlclient-dev \
54+
libpq-dev \
4955
&& export QT_VERSION="$( /mumble/scripts/choose_qt_version.sh )" \
5056
&& /mumble/scripts/install_qt_dev.sh \
5157
&& apt-get clean \

0 commit comments

Comments
 (0)