Skip to content

Commit

Permalink
chore: use correct sed pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-olszewski committed Apr 15, 2024
1 parent e4baf80 commit 216ce8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/turborepo-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
- name: "Get toolchain version from file"
id: file
shell: bash
run: echo "toolchain=$(cat ./rust-toolchain.toml | grep -F 'channel = ' | sed 's/channel = //' | sed 's/\"')" >> $GITHUB_OUTPUT
run: echo "toolchain=$(cat ./rust-toolchain.toml | grep -F 'channel = ' | sed 's/channel = //' | sed 's/\"//g')" >> $GITHUB_OUTPUT

- name: Rust Setup
uses: dtolnay/rust-toolchain@master
Expand Down

0 comments on commit 216ce8e

Please sign in to comment.