We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbaa0e1 commit ec7ef3cCopy full SHA for ec7ef3c
.github/actions/common-setup/action.yml
@@ -50,7 +50,7 @@ runs:
50
51
- name: Install rust toolchain
52
shell: bash
53
- run: rustup show
+ run: rustup show active-toolchain || rustup toolchain install
54
if: ${{ inputs.requiresRust == 'true' }}
55
56
- name: Prepare the build environment
docker/build.sh
@@ -51,7 +51,7 @@ docker run \
--workdir /build \
--user "$(id -u):$(id -g)" \
"$BUILDER_CONTAINER_TAG" \
- cargo build --release
+ 'bash -c "rustup toolchain install && cargo build --release"'
# Prepare artifacts.
57
TMP_ARTIFACTS_DIR="$(mktemp -d)"
0 commit comments