From 248f4acaea5dc77aafa90b5661615f8a84d059cf Mon Sep 17 00:00:00 2001 From: "Ian Clarke (aider)" Date: Sun, 19 Jan 2025 11:21:39 -0600 Subject: [PATCH] fix: Install Dioxus CLI in GitHub Actions workflow --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7f2653ee..4a344c15 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,6 +48,12 @@ jobs: with: command: install args: --force cargo-make + + - name: Install Dioxus CLI + uses: actions-rs/cargo@v1 + with: + command: install + args: --force dioxus-cli - name: Build Project run: cargo make build