Skip to content

Commit 11f27b5

Browse files
committed
Add output to the shell script for easier debugging
1 parent 1347d6f commit 11f27b5

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/scripts/add-tags.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Input parameters
88
UNITY_VERSION=$1
99
IS_URP=${2:-"false"}
10+
echo "Running add_tags.sh with UNITY_VERSION: $UNITY_VERSION, IS_URP: $IS_URP"
1011

1112
# Extract the first four characters of UNITY_VERSION
1213
MAJOR_VERSION=${UNITY_VERSION:0:4}

.github/workflows/upgrade-unity.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@ jobs:
175175
IS_URP=true
176176
fi
177177
178-
sh .github/scripts/add-tags.sh $UNITY_VERSION $IS_URP
178+
# Run add tags script
179+
./.github/scripts/add-tags.sh "$UNITY_VERSION" "$IS_URP"
179180
env:
180181
UNITY_VERSION: ${{ inputs.unityVersion }}
181182

0 commit comments

Comments
 (0)