From 311df42a4ebb4518e5347dccd0029bdcf29dfd86 Mon Sep 17 00:00:00 2001 From: yatinappsmith <84702014+yatinappsmith@users.noreply.github.com> Date: Thu, 15 Sep 2022 08:12:01 +0530 Subject: [PATCH] ci: Fix tar download for rts (#16772) Update integration-tests-command.yml --- .github/workflows/integration-tests-command.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests-command.yml b/.github/workflows/integration-tests-command.yml index fe08194be9..93875e0de7 100644 --- a/.github/workflows/integration-tests-command.yml +++ b/.github/workflows/integration-tests-command.yml @@ -153,7 +153,12 @@ jobs: uses: actions/download-artifact@v2 with: name: rts-build - path: app/rts/dist/ + path: app/rts/rts-dist.tar + + # Untar the bundles + - name: Untar the rts bundles + run: | + tar -xvf rts-dist.tar dist - name: Download the rts build dependencies uses: actions/download-artifact@v2