Skip to content

Commit 181889d

Browse files
authored
Fix manifest path comma (#2369)
1 parent 18a26b6 commit 181889d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -139,21 +139,21 @@ jobs:
139139
DRY_RUN: ${{ inputs.dry_run }}
140140
run: |
141141
set -x
142-
142+
143143
# For debugging purposes
144144
git status
145-
145+
146146
if ! git diff-index --quiet HEAD; then
147-
# gradle.properties was changed, we need to commit and push the diff
148-
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}"
149-
147+
# gradle.properties was changed, we need to commit and push the diff
148+
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}"
149+
150150
# This will fail if we tried to release from a non-HEAD commit on the release branch.
151151
# The only scenario where we would try to release a non-HEAD commit from the release branch is
152152
# to retry a release action execution that failed due to a transient issue.
153153
# In that case, we expect the commit to be releasable as-is, i.e. the runtime crate version in gradle.properties
154154
# should already be the expected one.
155155
git push origin "HEAD:refs/heads/${RELEASE_BRANCH_NAME}"
156-
156+
157157
echo "commit_sha=$(git rev-parse HEAD)" > $GITHUB_OUTPUT
158158
else
159159
echo "commit_sha=${RELEASE_COMMIT_SHA}" > $GITHUB_OUTPUT
@@ -213,7 +213,7 @@ jobs:
213213
await createReleaseScript({
214214
github,
215215
isDryRun: ${{ inputs.dry_run }},
216-
releaseManifestPath: "smithy-rs-release/smithy-rs-release-manifest.json"
216+
releaseManifestPath: "smithy-rs-release/smithy-rs-release-manifest.json",
217217
releaseCommitish: "${{ steps.push-changelog.outputs.commit_sha }}"
218218
});
219219
- name: Publish to crates.io

0 commit comments

Comments
 (0)