Skip to content

Commit

Permalink
Merge #427
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
bors[bot] and jonasbb authored Apr 6, 2022
2 parents c60c753 + a1b1751 commit c46454c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish-crates-io.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: "Install/Update the Rust version"
run: rustup toolchain install stable --profile minimal
run: |
rustup toolchain install stable --profile minimal
rustup default stable
cargo --version
rustc --version
Expand Down

0 comments on commit c46454c

Please sign in to comment.