File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,9 @@ jobs:
133
133
SEMANTIC_VERSION : ${{ inputs.semantic_version }}
134
134
DRY_RUN : ${{ inputs.dry_run }}
135
135
run : |
136
+ set -x
137
+ # For debugging purposes
138
+ git status
136
139
# The file was actually changed, we need to commit the changes
137
140
git diff-index --quiet HEAD || { git -c 'user.name=AWS SDK Rust Bot' -c 'user.email=aws-sdk-rust-primary@amazon.com' commit gradle.properties --message "Upgrade the smithy-rs runtime crates version to ${SEMANTIC_VERSION}" && git push origin; }
138
141
Original file line number Diff line number Diff line change @@ -12,7 +12,12 @@ ARTIFACTS_DIR="$(pwd)/artifacts/upgrade-gradle-properties"
12
12
mkdir -p " ${ARTIFACTS_DIR} "
13
13
14
14
pushd " ${SMITHY_RS_DIR} "
15
+ echo " gradle.properties BEFORE the upgrade"
16
+ cat gradle.properties
15
17
publisher upgrade-runtime-crates-version --version " ${SEMANTIC_VERSION} "
18
+ echo " gradle.properties AFTER the upgrade"
19
+ cat gradle.properties
20
+ git status
16
21
popd
17
22
18
23
# Clone smithy-rs repo changes (changelog updates) into
@@ -21,4 +26,5 @@ pushd "${ARTIFACTS_DIR}"
21
26
git clone " ${SMITHY_RS_DIR} "
22
27
# Copy over the original remotes so that it's possible to push to `origin`
23
28
cp " ${SMITHY_RS_DIR} /.git/config" smithy-rs/.git/config
29
+ git status
24
30
popd
You can’t perform that action at this time.
0 commit comments