From ce8a35adeab02ee126aed24411dc394d90ddaf91 Mon Sep 17 00:00:00 2001 From: WarmUpTill <19472752+WarmUpTill@users.noreply.github.com> Date: Fri, 7 Aug 2026 19:14:28 +0200 Subject: [PATCH] CI: Include Ubuntu 26 artifacts in release draft --- .github/workflows/build-project.yaml | 16 ++++++++++++++++ .github/workflows/push.yaml | 1 + 2 files changed, 17 insertions(+) diff --git a/.github/workflows/build-project.yaml b/.github/workflows/build-project.yaml index 03da45c4..184d872c 100644 --- a/.github/workflows/build-project.yaml +++ b/.github/workflows/build-project.yaml @@ -249,6 +249,14 @@ jobs: name: ${{ steps.setup.outputs.pluginName }}-${{ steps.setup.outputs.pluginVersion }}-sources-${{ needs.check-event.outputs.commitHash }} path: ${{ github.workspace }}/release/${{ steps.setup.outputs.pluginName }}-*-source.* + - name: Rename artifacts for Ubuntu 24 🏷️ + run: | + : Rename artifacts for Ubuntu 24 🏷️ + for f in ${{ github.workspace }}/release/*-x86_64-linux-gnu.*; do + [ -e "${f}" ] || continue + mv "${f}" "${f/x86_64-linux-gnu/x86_64-ubuntu24.04-linux-gnu}" + done + - name: Upload Artifacts 📡 uses: actions/upload-artifact@v7 with: @@ -320,6 +328,14 @@ jobs: target: x86_64 config: ${{ needs.check-event.outputs.config }} + - name: Rename artifacts for Ubuntu 26 🏷️ + run: | + : Rename artifacts for Ubuntu 26 🏷️ + for f in ${{ github.workspace }}/release/*-x86_64-linux-gnu.*; do + [ -e "${f}" ] || continue + mv "${f}" "${f/x86_64-linux-gnu/x86_64-ubuntu26.04-linux-gnu}" + done + - name: Upload Artifacts 📡 uses: actions/upload-artifact@v7 with: diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index 9d9d4429..37cee028 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -78,6 +78,7 @@ jobs: 'windows-x64;zip|exe' 'macos-universal;tar.xz|pkg' 'ubuntu-24.04-x86_64;tar.xz|deb|ddeb' + 'ubuntu-26.04-x86_64;tar.xz|deb|ddeb' 'sources;tar.xz' )