From 1e2660ff94bc567cce322bb7c10ed528baeed79f Mon Sep 17 00:00:00 2001 From: Ellen Poe Date: Fri, 3 Oct 2025 09:58:54 -0700 Subject: [PATCH] ci: properly set version code in CI pipeline --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9c5f3f1..db24b52 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -185,9 +185,9 @@ build_release: before_script: # Extract version from tag - export TAG=$CI_COMMIT_TAG - - export VERSION=${TAG#v} + - export VERSION_NAME=${TAG#v} - export VERSION_CODE=$(date +%s) - - echo "Extracted version=$VERSION from tag=$TAG" + - echo "Extracted version=$VERSION_NAME from tag=$TAG" - echo "VERSION_CODE=$VERSION_CODE" # Install git-lfs and additional dependencies - sudo apt-get update -qq -- GitLab