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:
165165 path : /root/.m2 # path to cache
166166 key : ${{ runner.os }}-junit-${{ hashFiles('**/pom.xml') }} # key for restoring and saving the cache
167167 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+
168172 # In this step, we are downloading the latest artifact from the build job and storing it in the container
169173 - name : Download and unzip all test results artifacts
170174 run : |
@@ -202,7 +206,7 @@ jobs:
202206
203207 echo "Contents of my_artifact.zip for artifact ID: $ARTIFACT_ID"
204208 unzip -l my_artifact.zip
205-
209+
206210 unzip my_artifact.zip -d test_results 2> /dev/null || true
207211 echo "Contents of test_results directory for artifact ID: $ARTIFACT_ID"
208212 ls -l test_results
You can’t perform that action at this time.
0 commit comments