Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFormerLurker <hochgebe@gmail.com>2021-11-13 20:58:26 +0300
committerFormerLurker <hochgebe@gmail.com>2021-11-13 20:58:26 +0300
commitda99bff87a14814bd9684d519a886643de2bc7fc (patch)
treeca52f9d107537c19152478e29f661a9553b06fb0
parentbce40db1d586426d4a45ae4dd2e0b4b2ec9411a5 (diff)
Another attempt to fix zip and tar packing
-rw-r--r--.github/workflows/ccpp.yml4
1 files 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