From 8286111644241864c991c6ee84a6e1284193cb1c Mon Sep 17 00:00:00 2001 From: onebeastchris Date: Wed, 13 Aug 2025 02:05:02 +0300 Subject: [PATCH] Fix version parsing --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c8810ee..e2c959b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,7 +50,7 @@ jobs: if: ${{ (success() || failure()) && github.repository == 'GeyserMC/PackConverter' }} id: get-version run: | - version=$(grep -o "mod_version=[0-9\\.]*" gradle.properties | cut -d"=" -f2 | cut -d"-" -f1) + version=$(grep -o "version=[0-9\\.]*" gradle.properties | cut -d"=" -f2 | cut -d"-" -f1) echo "VERSION=${version}" >> $GITHUB_OUTPUT - name: Get Release Metadata