From 2589439cf6cfbd7cbf33db610e5b517c18e8efb8 Mon Sep 17 00:00:00 2001 From: Michael Chernov <4ernovm@gmail.com> Date: Fri, 23 Feb 2024 15:00:31 +0200 Subject: [PATCH] Troubleshoot archive error --- .github/workflows/soot.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/soot.yml b/.github/workflows/soot.yml index 26791d97..5ddd206e 100644 --- a/.github/workflows/soot.yml +++ b/.github/workflows/soot.yml @@ -53,9 +53,9 @@ jobs: - name: Create archive with generated JARs if: steps.calc-checksum.outputs.hash != steps.calc-checksum.outputs.prev_hash run: | - cd java/common/ - zip -r soot-wrapper-${{ matrix.java-version }}.zip target/*.jar - mv soot-wrapper-${{ matrix.java-version }}.zip ../../soot-wrapper-${{ matrix.java-version }}.zip + cd java/common/target/ + zip -r soot-wrapper-${{ matrix.java-version }}.zip *.jar + mv soot-wrapper-${{ matrix.java-version }}.zip ../../../soot-wrapper-${{ matrix.java-version }}.zip - name: Store soot-wrapper revision hash if: steps.calc-checksum.outputs.hash != steps.calc-checksum.outputs.prev_hash