From b9e93b9dfd664a22f123ade2122aaa290a330f8f Mon Sep 17 00:00:00 2001 From: ibrahimjaved12 Date: Tue, 30 Jan 2024 18:16:25 +0500 Subject: [PATCH] debug statements --- .github/workflows/weekly_csv_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/weekly_csv_release.yml b/.github/workflows/weekly_csv_release.yml index 2b29425..703cf12 100644 --- a/.github/workflows/weekly_csv_release.yml +++ b/.github/workflows/weekly_csv_release.yml @@ -62,7 +62,7 @@ jobs: echo "here0" IFS='.' read -a TAG_PARTS <<< "$BASE_TAG" echo "here1" - ((TAG_PARTS[2]++)) # Increment the patch number + TAG_PARTS[2]=$((TAG_PARTS[2]+1)) # Increment the patch number echo "here2" NEW_TAG="v${TAG_PARTS[0]}.${TAG_PARTS[1]}.${TAG_PARTS[2]}-csv" echo "new tag"