Skip to content

Commit

Permalink
Properly handle the presence of a rust-toolchain.tom file
Browse files Browse the repository at this point in the history
  • Loading branch information
jessebraham committed Mar 7, 2022
1 parent 7d76121 commit 9de5c64
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@ runs:
with:
profile: minimal
toolchain: stable
default: true
override: true
- name: Install Xtensa toolchain
shell: bash
run: |
[[ "${{ inputs.ldproxy }}" = true ]] && crates="ldproxy" || crates=""
${{ github.action_path }}/install.sh "$crates" ${{ inputs.version }}
[[ "${{ inputs.default }}" = true ]] && rustup default esp || true
rustup override unset

0 comments on commit 9de5c64

Please sign in to comment.