diff --git a/.github/workflows/flatpak-build.yml b/.github/workflows/flatpak-build.yml index fc23948fa..fc396362e 100644 --- a/.github/workflows/flatpak-build.yml +++ b/.github/workflows/flatpak-build.yml @@ -68,3 +68,8 @@ jobs: - name: Create Flatpak bundle run: | flatpak build-bundle repo hexchat.flatpak io.github.Hexchat stable --runtime-repo=https://flathub.org/repo/flathub.flatpakrepo + + - uses: actions/upload-artifact@v4 + with: + name: Flatpak Bundle + path: hexchat.flatpak diff --git a/.github/workflows/ubuntu-build.yml b/.github/workflows/ubuntu-build.yml index 675430ab5..e03a7e4da 100644 --- a/.github/workflows/ubuntu-build.yml +++ b/.github/workflows/ubuntu-build.yml @@ -48,8 +48,19 @@ jobs: - name: Test run: ninja -C build test + - name: Create tar.gz artifact + run: | + mkdir -p hexchat-ubuntu-build + DESTDIR=hexchat-ubuntu-build ninja -C build install + tar -czf hexchat-2.16.3-ubuntu.tar.gz -C hexchat-ubuntu-build . + - name: Show ccache statistics run: ccache --show-stats - name: Install run: sudo ninja -C build install + + - uses: actions/upload-artifact@v4 + with: + name: Ubuntu Tarball + path: hexchat-2.16.3-ubuntu.tar.gz diff --git a/meson.build b/meson.build index 2f8fb3f26..a958f50e6 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('hexchat', 'c', - version: '2.16.2', + version: '2.16.3', meson_version: '>= 0.47.0', default_options: [ 'c_std=gnu89',