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.