From 0ffe280beb95a1e7564b9157a1aad8f3bef18d89 Mon Sep 17 00:00:00 2001 From: FormerLurker Date: Sat, 13 Nov 2021 11:42:21 -0600 Subject: Fix action error --- .github/workflows/ccpp.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 169fbd6..645c7e4 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -214,12 +214,12 @@ jobs: - name: Pack tar - working-directory: instdir - run: ${{ steps.cmake_and_ninja.outputs.cmake_dir }}/cmake -E tar cJfv "./${{ matrix.config.tar_artifact }}" . + working-directory: instdir/${{ matrix.config.tar_artifact }} + run: ${{ steps.cmake_and_ninja.outputs.cmake_dir }}/cmake -E tar cJfv "../${{ matrix.config.tar_artifact }}" . - name: Pack zip - working-directory: instdir - run: ${{ steps.cmake_and_ninja.outputs.cmake_dir }}/cmake -E tar "cvf" "./${{ matrix.config.zip_artifact }}" --format=zip . + working-directory: instdir/${{ matrix.config.tar_artifact }} + run: ${{ steps.cmake_and_ninja.outputs.cmake_dir }}/cmake -E tar "cvf" "../${{ matrix.config.zip_artifact }}" --format=zip . - name: Upload tar -- cgit v1.2.3