diff --git a/.github/workflows/binary_copy.yml b/.github/workflows/binary_copy.yml index 69ed40db60..660ebeb99d 100644 --- a/.github/workflows/binary_copy.yml +++ b/.github/workflows/binary_copy.yml @@ -28,9 +28,20 @@ jobs: name: Make rusk runs-on: core steps: - - uses: actions/checkout@v4 - - uses: dsherret/rust-toolchain-file@v1 - - run: make + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Rust toolchain + uses: dsherret/rust-toolchain-file@v1 + + - name: Setting up Node 20.x + uses: actions/setup-node@v4 + with: + node-version: 20.x + scope: "@dusk-network" + + - name: Build node + run: make all copy_to_host: needs: build runs-on: core