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 21:12:28 +0300
committerFormerLurker <hochgebe@gmail.com>2021-11-13 21:12:28 +0300
commit32708379fe8fe91e4e21b6928d6384162abcd091 (patch)
treef08b83bc283b5d9c972d0d0d11e3d1e75f011aaf
parentda99bff87a14814bd9684d519a886643de2bc7fc (diff)
Give up trying to fix zip format (exclude directory with file name) and revert.
-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 96ca171..1087cf1 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