From 256e3ba587d0aba7f78189b6a18ea5952a1e7c57 Mon Sep 17 00:00:00 2001 From: pml68 Date: Fri, 21 Feb 2025 21:22:52 +0100 Subject: feat: update to Rust 2024 --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.github/workflows/build.yml') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d2aa072..b0af166 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,11 +9,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - toolchain: [stable, nightly] + rust-version: [stable, nightly] steps: - uses: hecrj/setup-rust-action@v2 with: - rust-version: ${{ matrix.toolchain }} + rust-version: ${{ matrix.rust-version }} - uses: actions/checkout@master - name: Install dependencies run: | @@ -23,7 +23,7 @@ jobs: - name: Build iced-builder binary run: cargo build --verbose --release - name: Archive iced-builder binary - if: matrix.toolchain == 'stable' + if: matrix.rust-version == 'stable' uses: actions/upload-artifact@v4 with: name: iced-builder-x86_64-unknown-linux-gnu -- cgit v1.2.3