Skip to content

Commit 9460e18

Browse files
committed
chore: install unzip for artifact extraction in ci.yml
1 parent a989e4d commit 9460e18

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)