ci: Fix rts dist (#16774)

Update integration-tests-command.yml
This commit is contained in:
yatinappsmith 2022-09-15 10:28:56 +05:30 committed by GitHub
parent 0351b0e9a3
commit d543bbf648
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.