From da51ebb0a76112b56b356b74b5234aa2a690706a Mon Sep 17 00:00:00 2001 From: Vending Machine Date: Sun, 13 Apr 2025 14:44:27 +0200 Subject: [PATCH] fix(ci): strip v prefix from version in vencord.dev updater --- .github/workflows/update-vencord-dev.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-vencord-dev.yml b/.github/workflows/update-vencord-dev.yml index 3ad4cf5..5fc4cef 100644 --- a/.github/workflows/update-vencord-dev.yml +++ b/.github/workflows/update-vencord-dev.yml @@ -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 }}"