Skip to content

Commit 2d04666

Browse files
committed
ci(template: Fix env var interpolation
1 parent 0c1421a commit 2d04666

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

template/.github/workflows/build.yaml.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484

8585
- name: Install Rust ${{ env.RUST_TOOLCHAIN_VERSION }} toolchain
8686
shell: bash
87-
run: rustup toolchain install "RUST_TOOLCHAIN_VERSION"
87+
run: rustup toolchain install "${RUST_TOOLCHAIN_VERSION}"
8888

8989
- name: Setup Rust Cache
9090
uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2.8.0
@@ -160,7 +160,7 @@ jobs:
160160

161161
- name: Install Rust ${{ env.RUST_TOOLCHAIN_VERSION }} Toolchain
162162
shell: bash
163-
run: rustup toolchain install "RUST_TOOLCHAIN_VERSION"
163+
run: rustup toolchain install "${RUST_TOOLCHAIN_VERSION}"
164164

165165
- name: Build Container Image
166166
id: build

0 commit comments

Comments
 (0)