diff options
| author | pml68 <contact@pml68.dev> | 2025-02-21 21:22:52 +0100 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2025-02-21 21:25:38 +0100 |
| commit | 256e3ba587d0aba7f78189b6a18ea5952a1e7c57 (patch) | |
| tree | b54978347382ae182a87703644fc3cfaf103292a /.github/workflows/build.yml | |
| parent | Merge pull request #6 from pml68/feat/0.14 (diff) | |
| download | iced-builder-256e3ba587d0aba7f78189b6a18ea5952a1e7c57.tar.gz | |
feat: update to Rust 2024
Diffstat (limited to '')
| -rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
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 |
