From aeb6b72a246de7306aea04fc599a4e26f2200368 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 6 Jul 2023 14:05:01 +0200 Subject: [PATCH] change the destination --- .github/workflows/reuse.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reuse.yml b/.github/workflows/reuse.yml index 1edeee2bd6a..6c8c54b6981 100644 --- a/.github/workflows/reuse.yml +++ b/.github/workflows/reuse.yml @@ -27,8 +27,9 @@ jobs: run: sudo apt-get install -y cmake - name: Create CGAL internal release run: | - cmake -DCGAL_VERSION=9.9 -P ./Scripts/developer_scripts/cgal_create_release_with_cmake.cmake + mkdir -p $HOME/release + cmake -DDESTINATION=$HOME/release -DCGAL_VERSION=9.9 -P ./Scripts/developer_scripts/cgal_create_release_with_cmake.cmake - name: REUSE lint release tarball uses: fsfe/reuse-action@v1 with: - args: --root /tmp/CGAL-9.9 --include-submodules lint + args: --root $HOME/release/CGAL-9.9 --include-submodules lint