From da99bff87a14814bd9684d519a886643de2bc7fc Mon Sep 17 00:00:00 2001 From: FormerLurker Date: Sat, 13 Nov 2021 11:58:26 -0600 Subject: Another attempt to fix zip and tar packing --- .github/workflows/ccpp.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 1087cf1..96ca171 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -215,11 +215,11 @@ jobs: - name: Pack zip working-directory: instdir - run: ${{ steps.cmake_and_ninja.outputs.cmake_dir }}/cmake -E tar "cvf" "../${{ matrix.config.zip_artifact }}" --format=zip . + run: ${{ steps.cmake_and_ninja.outputs.cmake_dir }}/cmake -E tar "cvf" "${{ matrix.config.zip_artifact }}" "../" --format=zip . - name: Pack tar working-directory: instdir - run: ${{ steps.cmake_and_ninja.outputs.cmake_dir }}/cmake -E tar cJfv "../${{ matrix.config.tar_artifact }}" . + run: ${{ steps.cmake_and_ninja.outputs.cmake_dir }}/cmake -E tar cJfv "${{ matrix.config.tar_artifact }}" "../" . - name: Upload tar uses: actions/upload-artifact@v1 -- cgit v1.2.3