From 4bda6d74d11952ab14b317fbee4750be17c60056 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 29 May 2024 21:23:57 +0300 Subject: [PATCH] Remove libs/*/doc from -b2-nodocs archives in release-cmake.yml --- .github/workflows/release-cmake.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-cmake.yml b/.github/workflows/release-cmake.yml index c25216b564e3..75c4878719da 100644 --- a/.github/workflows/release-cmake.yml +++ b/.github/workflows/release-cmake.yml @@ -83,12 +83,13 @@ jobs: run: | find ${{ github.ref_name }} -name ".git" -prune -exec rm -rf {} + - - name: Move headers + - name: Move headers, remove docs shell: bash run: | cd ${{ github.ref_name }} cp -r libs/*/include/boost libs/numeric/*/include/boost . rm -rf libs/*/include libs/numeric/*/include + rm -rf libs/*/doc libs/numeric/*/doc rm -f CMakeLists.txt - name: Create archives @@ -122,12 +123,13 @@ jobs: run: | find ${{ github.ref_name }} -name ".git" -prune -exec rm -rf {} + - - name: Move headers + - name: Move headers, remove docs shell: bash run: | cd ${{ github.ref_name }} cp -r libs/*/include/boost libs/numeric/*/include/boost . rm -rf libs/*/include libs/numeric/*/include + rm -rf libs/*/doc libs/numeric/*/doc rm -f CMakeLists.txt - name: Create archives