ci: Prefix AppImage xemu version with 'v'

This commit is contained in:
Matt Borgerson 2023-01-16 16:32:19 -07:00 committed by mborgerson
parent 69ee655a76
commit 70099808b1
1 changed files with 3 additions and 3 deletions

View File

@ -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,