File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -165,6 +165,10 @@ jobs:
165
165
path : /root/.m2 # path to cache
166
166
key : ${{ runner.os }}-junit-${{ hashFiles('**/pom.xml') }} # key for restoring and saving the cache
167
167
restore-keys : ${{ runner.os }}-junit- # key for restoring the cache if no exact match is found
168
+
169
+ - name : Install unzip
170
+ run : sudo apt-get install -y unzip
171
+
168
172
# In this step, we are downloading the latest artifact from the build job and storing it in the container
169
173
- name : Download and unzip all test results artifacts
170
174
run : |
@@ -202,7 +206,7 @@ jobs:
202
206
203
207
echo "Contents of my_artifact.zip for artifact ID: $ARTIFACT_ID"
204
208
unzip -l my_artifact.zip
205
-
209
+
206
210
unzip my_artifact.zip -d test_results 2> /dev/null || true
207
211
echo "Contents of test_results directory for artifact ID: $ARTIFACT_ID"
208
212
ls -l test_results
You can’t perform that action at this time.
0 commit comments