Skip to content

Commit c46454c

Browse files
bors[bot]jonasbb
andauthored
Merge #427
427: Fix syntax error in the release script r=jonasbb a=jonasbb The YAML string was accidentially not a newline preserving string. bors merge Co-authored-by: Jonas Bushart <[email protected]>
2 parents c60c753 + a1b1751 commit c46454c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/publish-crates-io.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ jobs:
6060
steps:
6161
- uses: actions/checkout@v3
6262
- name: "Install/Update the Rust version"
63-
run: rustup toolchain install stable --profile minimal
63+
run: |
64+
rustup toolchain install stable --profile minimal
6465
rustup default stable
6566
cargo --version
6667
rustc --version

0 commit comments

Comments
 (0)