diff --git a/.github/workflows/build_test_push.yaml b/.github/workflows/build_test_push.yaml index ea93b2d2..388b7ecd 100644 --- a/.github/workflows/build_test_push.yaml +++ b/.github/workflows/build_test_push.yaml @@ -32,13 +32,12 @@ jobs: - name: Download RonDB run: | set -x - wget $RONDB_TARBALL_URI -O ./temp_tarball.tar.gz - (set +e; ls -la ./**) - (set +e; ls -la /tmp/**) - tar xfz ./temp_tarball.tar.gz -C $RONDB_PATH --strip-components=1 - (set +e; ls -la ./**) - (set +e; ls -la /tmp/**) - rm ./temp_tarball.tar.gz + wget $RONDB_TARBALL_URI -O /tmp/temp_tarball.tar.gz + (set +e; ls -la /tmp) + tar xfz /tmp/temp_tarball.tar.gz -C $RONDB_PATH --strip-components=1 + (set +e; ls -la /tmp) + (set +e; ls -la $RONDB_PATH) + rm /tmp/temp_tarball.tar.gz - name: Build and Run RonDB Service run: |