@@ -101,24 +101,38 @@ jobs:
101101
102102 # Step 4: Print Input Values
103103 - name : Print Input Values
104+ env :
105+ PLATFORM : ${{ inputs.platform }}
106+ CHECKOUT_BASE_BRANCH : ${{ inputs.checkout-base-branch }}
107+ RELEASE_PR_BASE_BRANCH : ${{ inputs.release-pr-base-branch }}
108+ SEMVER_VERSION : ${{ inputs.semver-version }}
109+ PREVIOUS_VERSION_REF : ${{ inputs.previous-version-ref }}
110+ TEST_ONLY : ${{ inputs.test-only }}
111+ MOBILE_BUILD_VERSION : ${{ inputs.mobile-build-version }}
112+ MOBILE_TEMPLATE_SHEET_ID : ${{ inputs.mobile-template-sheet-id }}
113+ EXTENSION_TEMPLATE_SHEET_ID : ${{ inputs.extension-template-sheet-id }}
114+ RELEASE_SHEET_GOOGLE_DOCUMENT_ID : ${{ inputs.release-sheet-google-document-id }}
115+ GITHUB_TOOLS_VERSION : ${{ inputs.github-tools-version }}
116+ GIT_USER_NAME : ${{ inputs.git-user-name }}
117+ GIT_USER_EMAIL : ${{ inputs.git-user-email }}
104118 run : |
105119 echo "Input Values:"
106120 echo "-------------"
107- echo "Platform: ${{ inputs.platform }} "
108- echo "Checkout Base Branch: ${{ inputs.checkout-base-branch }} "
109- echo "Release PR Base Branch: ${{ inputs.release-pr-base-branch }} "
110- echo "Semver Version: ${{ inputs.semver-version }} "
111- echo "Previous Version Reference: ${{ inputs.previous-version-ref }} "
112- echo "Test Only Mode: ${{ inputs.test-only }} "
113- if [[ "${{ inputs.platform }} " == "mobile" ]]; then
114- echo "Mobile Build Version: ${{ inputs.mobile-build-version }} "
121+ echo "Platform: $PLATFORM "
122+ echo "Checkout Base Branch: $CHECKOUT_BASE_BRANCH "
123+ echo "Release PR Base Branch: $RELEASE_PR_BASE_BRANCH "
124+ echo "Semver Version: $SEMVER_VERSION "
125+ echo "Previous Version Reference: $PREVIOUS_VERSION_REF "
126+ echo "Test Only Mode: $TEST_ONLY "
127+ if [[ "$PLATFORM " == "mobile" ]]; then
128+ echo "Mobile Build Version: $MOBILE_BUILD_VERSION "
115129 fi
116- echo "Mobile Template Sheet ID: ${{ inputs.mobile-template-sheet-id }} "
117- echo "Extension Template Sheet ID: ${{ inputs.extension-template-sheet-id }} "
118- echo "Release Sheet Google Document ID: ${{ inputs.release-sheet-google-document-id }} "
119- echo "GitHub Tools Version: ${{ inputs.github-tools-version }} "
120- echo "Git User Name: ${{ inputs.git-user-name }} "
121- echo "Git User Email: ${{ inputs.git-user-email }} "
130+ echo "Mobile Template Sheet ID: $MOBILE_TEMPLATE_SHEET_ID "
131+ echo "Extension Template Sheet ID: $EXTENSION_TEMPLATE_SHEET_ID "
132+ echo "Release Sheet Google Document ID: $RELEASE_SHEET_GOOGLE_DOCUMENT_ID "
133+ echo "GitHub Tools Version: $GITHUB_TOOLS_VERSION "
134+ echo "Git User Name: $GIT_USER_NAME "
135+ echo "Git User Email: $GIT_USER_EMAIL "
122136 echo "-------------"
123137
124138 # Step 5: Create Release PR
@@ -135,16 +149,22 @@ jobs:
135149 NEW_VERSION : ${{ inputs.semver-version }}
136150 MOBILE_TEMPLATE_SHEET_ID : ${{ inputs.mobile-template-sheet-id }}
137151 EXTENSION_TEMPLATE_SHEET_ID : ${{ inputs.extension-template-sheet-id }}
152+ PLATFORM : ${{ inputs.platform }}
153+ PREVIOUS_VERSION_REF : ${{ inputs.previous-version-ref }}
154+ SEMVER_VERSION : ${{ inputs.semver-version }}
155+ MOBILE_BUILD_VERSION : ${{ inputs.mobile-build-version }}
156+ GIT_USER_NAME : ${{ inputs.git-user-name }}
157+ GIT_USER_EMAIL : ${{ inputs.git-user-email }}
138158 working-directory : ${{ github.workspace }}
139159 run : |
140160 # Execute the script from github-tools
141161 ./github-tools/.github/scripts/create-platform-release-pr.sh \
142- "${{ inputs.platform }} " \
143- "${{ inputs.previous-version-ref }} " \
144- "${{ inputs.semver-version }} " \
145- "${{ inputs.mobile-build-version }} " \
146- "${{ inputs.git-user-name }} " \
147- "${{ inputs.git-user-email }} "
162+ "$PLATFORM " \
163+ "$PREVIOUS_VERSION_REF " \
164+ "$SEMVER_VERSION " \
165+ "$MOBILE_BUILD_VERSION " \
166+ "$GIT_USER_NAME " \
167+ "$GIT_USER_EMAIL "
148168
149169 # Step 6: Upload commits.csv as artifact (if generated)
150170 - name : Upload commits.csv artifact
0 commit comments