We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1347d6f commit 11f27b5Copy full SHA for 11f27b5
.github/scripts/add-tags.sh
@@ -7,6 +7,7 @@
7
# Input parameters
8
UNITY_VERSION=$1
9
IS_URP=${2:-"false"}
10
+echo "Running add_tags.sh with UNITY_VERSION: $UNITY_VERSION, IS_URP: $IS_URP"
11
12
# Extract the first four characters of UNITY_VERSION
13
MAJOR_VERSION=${UNITY_VERSION:0:4}
.github/workflows/upgrade-unity.yml
@@ -175,7 +175,8 @@ jobs:
175
IS_URP=true
176
fi
177
178
- sh .github/scripts/add-tags.sh $UNITY_VERSION $IS_URP
+ # Run add tags script
179
+ ./.github/scripts/add-tags.sh "$UNITY_VERSION" "$IS_URP"
180
env:
181
UNITY_VERSION: ${{ inputs.unityVersion }}
182
0 commit comments