Skip to content

Commit

Permalink
debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
ibrahimjaved12 committed Jan 30, 2024
1 parent 39adb8b commit b9e93b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/weekly_csv_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit b9e93b9

Please sign in to comment.