We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0f4ad5 commit 568bc96Copy full SHA for 568bc96
.github/workflows/build_test_push.yaml
@@ -32,13 +32,12 @@ jobs:
32
- name: Download RonDB
33
run: |
34
set -x
35
- wget $RONDB_TARBALL_URI -O ./temp_tarball.tar.gz
36
- (set +e; ls -la ./**)
37
- (set +e; ls -la /tmp/**)
38
- tar xfz ./temp_tarball.tar.gz -C $RONDB_PATH --strip-components=1
39
40
41
- 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 $RONDB_PATH)
+ rm /tmp/temp_tarball.tar.gz
42
43
- name: Build and Run RonDB Service
44
0 commit comments