From 4600c4ddc3d663d063aadba4380b3a45e475204f Mon Sep 17 00:00:00 2001 From: Panakotta00 Date: Sat, 26 Oct 2024 03:05:18 +0200 Subject: [PATCH] fix: Tools CI now uses Rust Nightly --- .github/workflows/build-tools.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-tools.yml b/.github/workflows/build-tools.yml index 1a7087e28..7d1ae572f 100644 --- a/.github/workflows/build-tools.yml +++ b/.github/workflows/build-tools.yml @@ -1,4 +1,4 @@ -name: Generate Documentation +name: Build Tools on: push: @@ -14,7 +14,13 @@ jobs: name: Build Documentation-CLI runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Setup Build Environment + run: | + rustup toolchain install nightly + rustup default nightly + + - name: Checkout Repository + uses: actions/checkout@v4 with: path: FicsItNetworks