We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2435ee commit b7f3397Copy full SHA for b7f3397
1 file changed
.github/workflows/build-apk.yml
@@ -71,10 +71,11 @@ jobs:
71
export CARGO_HOME="$HOME/.cargo"
72
export PATH="$CARGO_HOME/bin:$PATH"
73
74
- if ! command -v cargo >/dev/null; then
75
- curl https://sh.rustup.rs -sSf \
76
- | sh -s -- -y --profile minimal --default-toolchain "$RUST_TOOLCHAIN"
77
- fi
+ apt-get update
+ apt-get install -y curl
+
+ curl https://sh.rustup.rs -sSf \
78
+ | sh -s -- -y --profile minimal --default-toolchain "$RUST_TOOLCHAIN"
79
80
rustc --version
81
cargo --version
0 commit comments