From 70099808b12b059457637471475bccc3256aada3 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Mon, 16 Jan 2023 16:32:19 -0700 Subject: [PATCH] ci: Prefix AppImage xemu version with 'v' --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a3870efd9c..d290d83f7c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -190,7 +190,7 @@ jobs: tar -C appimage -xf data.tar* install -DT src/xemu.appdata.xml appimage/usr/share/metainfo/xemu.appdata.xml - export VERSION=$(cat src/XEMU_VERSION) + export VERSION=v$(cat src/XEMU_VERSION) if [[ "${{ matrix.configuration }}" == "Debug" ]]; then export VERSION=$VERSION-dbg fi @@ -357,8 +357,8 @@ jobs: dist/xemu-win-release/xemu-win-release.zip dist/xemu-macos-universal-release/xemu-macos-universal-release.zip dist/xemu-macos-universal-debug/xemu-macos-universal-debug.zip - dist/xemu-ubuntu-release/xemu/xemu-${{ env.XEMU_VERSION }}-x86_64.AppImage - dist/xemu-ubuntu-debug/xemu/xemu-${{ env.XEMU_VERSION }}-dbg-x86_64.AppImage + dist/xemu-ubuntu-release/xemu/xemu-v${{ env.XEMU_VERSION }}-x86_64.AppImage + dist/xemu-ubuntu-debug/xemu/xemu-v${{ env.XEMU_VERSION }}-dbg-x86_64.AppImage # Sync archive version of source (including submodule code) to the # ppa-snapshot branch to work around limitations of the Launchpad platform,