summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-02-21 21:22:52 +0100
committerpml68 <contact@pml68.dev>2025-02-21 21:25:38 +0100
commit256e3ba587d0aba7f78189b6a18ea5952a1e7c57 (patch)
treeb54978347382ae182a87703644fc3cfaf103292a /.github/workflows/build.yml
parentMerge pull request #6 from pml68/feat/0.14 (diff)
downloadiced-builder-256e3ba587d0aba7f78189b6a18ea5952a1e7c57.tar.gz
feat: update to Rust 2024
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml6
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