diff --git a/.CI/CreateUbuntuDeb.sh b/.CI/CreateUbuntuDeb.sh index ac627d649..e8929783b 100755 --- a/.CI/CreateUbuntuDeb.sh +++ b/.CI/CreateUbuntuDeb.sh @@ -15,6 +15,9 @@ packaging_dir="package" # Get the Ubuntu Release (e.g. 20.04 or 22.04) ubuntu_release="$(lsb_release -rs)" +# The final path where we'll save the .deb package +deb_path="Chatterino-ubuntu-${ubuntu_release}-x86_64.deb" + # Refactor opportunity: case "$ubuntu_release" in 20.04) @@ -77,15 +80,15 @@ breakline echo "Building package" -dpkg-deb --build "$packaging_dir" "Chatterino-x86_64.deb" +dpkg-deb --build "$packaging_dir" "$deb_path" breakline echo "Package info" -dpkg --info Chatterino-x86_64.deb +dpkg --info "$deb_path" breakline echo "Package contents" -dpkg --contents Chatterino-x86_64.deb # Shows folders and files inside .deb file +dpkg --contents "$deb_path" breakline diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a4494ed48..db5ac2044 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -302,7 +302,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: Chatterino-${{ matrix.os }}-Qt-${{ matrix.qt-version }}-${{ env.artifact_descr }}.deb - path: build/Chatterino-x86_64.deb + path: build/Chatterino-${{ matrix.is }}-x86_64.deb # MACOS - name: Install dependencies (MacOS) @@ -354,6 +354,11 @@ jobs: name: chatterino-windows-x86-64-5.15.2.zip path: release-artifacts/ + - uses: actions/download-artifact@v3 + with: + name: chatterino-windows-x86-64-5.15.2-symbols.pdb.7z + path: release-artifacts/ + - uses: actions/download-artifact@v3 with: name: Chatterino-x86_64-5.15.2.AppImage diff --git a/lib/crashpad b/lib/crashpad index 918fd319d..ec9925786 160000 --- a/lib/crashpad +++ b/lib/crashpad @@ -1 +1 @@ -Subproject commit 918fd319d679306c8c95ee92376c6fa6ef3407a0 +Subproject commit ec992578688b4c51c1856d08731cf7dcf10e446a