Use RUNNER_TMP instead of HOME

This commit is contained in:
Laurent Rineau 2023-07-06 14:14:28 +02:00
parent aeb6b72a24
commit 974df953f9
1 changed files with 3 additions and 3 deletions

View File

@ -27,9 +27,9 @@ jobs:
run: sudo apt-get install -y cmake run: sudo apt-get install -y cmake
- name: Create CGAL internal release - name: Create CGAL internal release
run: | run: |
mkdir -p $HOME/release mkdir -p $RUNNER_TEMP/release
cmake -DDESTINATION=$HOME/release -DCGAL_VERSION=9.9 -P ./Scripts/developer_scripts/cgal_create_release_with_cmake.cmake cmake -DDESTINATION=$RUNNER_TEMP/release -DCGAL_VERSION=9.9 -P ./Scripts/developer_scripts/cgal_create_release_with_cmake.cmake
- name: REUSE lint release tarball - name: REUSE lint release tarball
uses: fsfe/reuse-action@v1 uses: fsfe/reuse-action@v1
with: with:
args: --root $HOME/release/CGAL-9.9 --include-submodules lint args: --root $RUNNER_TEMP/release/CGAL-9.9 --include-submodules lint