Skip to content

Commit

Permalink
Fix syntax error in the release script
Browse files Browse the repository at this point in the history
The YAML string was accidentially not a newline preserving string.
  • Loading branch information
jonasbb committed Apr 6, 2022
1 parent c60c753 commit a1b1751
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 a1b1751

Please sign in to comment.