From 13134975e8c4adf7e6238d3a9232548a0cdd3ac1 Mon Sep 17 00:00:00 2001 From: Goutham Pratapa Date: Tue, 21 Nov 2023 12:31:32 +0530 Subject: [PATCH] Update rts-build-self-host.yml (#28992) --- .github/workflows/rts-build-self-host.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rts-build-self-host.yml b/.github/workflows/rts-build-self-host.yml index 2653cedc52..84ea8f65a8 100644 --- a/.github/workflows/rts-build-self-host.yml +++ b/.github/workflows/rts-build-self-host.yml @@ -125,7 +125,9 @@ jobs: # Install all the dependencies - name: Install dependencies if: steps.run_result.outputs.run_result != 'success' - run: yarn install --immutable + run: | + npm install -g yarn + yarn install --immutable # Run the Jest tests only if the workflow has been invoked in a PR - name: Run the jest tests @@ -164,6 +166,12 @@ jobs: with: name: rts-dist path: app/client/packages/rts/rts-dist.tar + + - name: Download the rts build artifact + uses: actions/download-artifact@v3 + with: + name: rts-dist + path: app/client/packages/rts/dist # Set status = success - name: Save the status of the run