fix(ci): strip v prefix from version in vencord.dev updater

This commit is contained in:
Vending Machine
2025-04-13 14:44:27 +02:00
committed by GitHub
parent d0399cbde4
commit da51ebb0a7

View File

@@ -17,7 +17,8 @@ jobs:
git clone https://$USERNAME:$API_TOKEN@github.com/$GH_REPO.git repo
cd repo
echo "${{ github.event.release.tag_name }}" > scripts/_latestVesktopVersion.txt
version="${{ github.event.release.tag_name }}"
echo "${version#v}" > scripts/_latestVesktopVersion.txt
git add scripts/_latestVesktopVersion.txt
git commit -m "Update Vesktop version to ${{ github.event.release.tag_name }}"