File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -225,9 +225,14 @@ jobs:
225
225
uses : ./smithy-rs/.github/actions/docker-build
226
226
with :
227
227
action : generate-new-changelog-next-toml
228
+ - name : Download all artifacts
229
+ uses : ./smithy-rs/.github/actions/download-all-artifacts
228
230
- name : Push smithy-rs changes
231
+ working-directory : generate-new-changelog-next-toml/smithy-rs
229
232
shell : bash
230
233
run : |
234
+ set -eux
235
+
231
236
# This will fail if other commits have been pushed to `main` after `commit_sha`
232
237
# In particular, this will ALWAYS fail if you are creating a new release series from
233
238
# a commit that is not the current tip of `main`.
Original file line number Diff line number Diff line change 6
6
7
7
set -eux
8
8
9
- changelogger init > smithy-rs/CHANGELOG.next.toml
9
+ SMITHY_RS_DIR=" $( pwd) /smithy-rs"
10
+ ARTIFACTS_DIR=" $( pwd) /artifacts/generate-new-changelog-next-toml"
11
+
12
+ changelogger init > " ${SMITHY_RS_DIR} /CHANGELOG.next.toml"
13
+
14
+ pushd " ${ARTIFACTS_DIR} "
15
+ cp -r " ${SMITHY_RS_DIR} " .
16
+ git -C smithy-rs status
17
+ popd
You can’t perform that action at this time.
0 commit comments