From 6c6ae1f732833b0b54d5b23c54da855aa538f4df Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 6 Jul 2023 14:18:49 +0200 Subject: [PATCH] RUNNER_TEMP is not passed from step to step Use ./ instead --- .github/workflows/reuse.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/reuse.yml b/.github/workflows/reuse.yml index 2a97e90458f..2113372a877 100644 --- a/.github/workflows/reuse.yml +++ b/.github/workflows/reuse.yml @@ -27,9 +27,9 @@ jobs: run: sudo apt-get install -y cmake - name: Create CGAL internal release run: | - mkdir -p $RUNNER_TEMP/release - cmake -DDESTINATION=$RUNNER_TEMP/release -DCGAL_VERSION=9.9 -P ./Scripts/developer_scripts/cgal_create_release_with_cmake.cmake + mkdir -p ./release + cmake -DDESTINATION=./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 $RUNNER_TEMP/release/CGAL-9.9 --include-submodules lint + args: --root ./release/CGAL-9.9 --include-submodules lint