We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b89e8e5 commit 4778504Copy full SHA for 4778504
.github/workflows/build-rust.yml
@@ -16,17 +16,16 @@ jobs:
16
- name: Build in Steam Runtime container
17
uses: addnab/docker-run-action@v3
18
with:
19
- image: registry.gitlab.steamos.cloud/steamrt/scout/sdk
+ image: registry.gitlab.steamos.cloud/steamrt/sniper/sdk
20
options: -v ${{ github.workspace }}:/work
21
run: |
22
set -ex
23
apt-get update
24
apt-get install -y curl build-essential
25
26
- # Install Rust using older curl syntax and . instead of source
27
- curl https://sh.rustup.rs -sSf > rustup.sh
28
- sh rustup.sh -y
29
- . "$HOME/.cargo/env"
+ # Install Rust
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
+ source "$HOME/.cargo/env"
30
31
cd /work/lib
32
cargo build --release
0 commit comments