From d543bbf648f324d9b6ac95e2003ebb331772e7bd Mon Sep 17 00:00:00 2001 From: yatinappsmith <84702014+yatinappsmith@users.noreply.github.com> Date: Thu, 15 Sep 2022 10:28:56 +0530 Subject: [PATCH] ci: Fix rts dist (#16774) Update integration-tests-command.yml --- .github/workflows/integration-tests-command.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration-tests-command.yml b/.github/workflows/integration-tests-command.yml index 34ba195427..9e690dbf0a 100644 --- a/.github/workflows/integration-tests-command.yml +++ b/.github/workflows/integration-tests-command.yml @@ -153,12 +153,13 @@ jobs: uses: actions/download-artifact@v2 with: name: rts-dist - path: app/rts/rts-dist.tar - - # Untar the bundles - - name: Untar the rts bundles + path: app/rts/dist + + - name: Untar the rts folder run: | - tar -xvf app/rts/rts-dist.tar -C app/rts/ + tar -xvf app/rts/dist/rts-dist.tar -C app/rts/ + echo "Cleaning up the tar files" + rm app/rts/dist/rts-dist.tar # We don't use Depot Docker builds because it's faster for local Docker images to be built locally. # It's slower and more expensive to build these Docker images on Depot and download it back to the CI node.