Skip to content

Commit 437db1f

Browse files
committed
WIP
1 parent 450785e commit 437db1f

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/generate_binaries.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ jobs:
3535
- name: Checkout code
3636
uses: actions/checkout@v4
3737

38+
- name: Mark workspace safe for git
39+
run: |
40+
git config --global --add safe.directory "$GITHUB_WORKSPACE" || true
41+
git config --global --add safe.directory /work || true
42+
3843
- name: Login to GitHub Container Repository (GHCR)
3944
uses: docker/login-action@v3
4045
with:
@@ -50,7 +55,6 @@ jobs:
5055
password: ${{ secrets.GITHUB_TOKEN }}
5156
buildImage: ${{ matrix.target.image }}
5257
privileged: ${{ matrix.target.privileged }}
53-
entrypoint: "sh /entrypoint_docker.sh" #TODO utile ?
5458

5559
- name: Archive binaries
5660
uses: actions/upload-artifact@v4

sources/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ include(cmake/compilers.cmake)
7575
## CPack installation preconfiguration
7676
##################################################################################################
7777
set(INSTALL_BINDIR "bin")
78-
SET(CPACK_OUTPUT_FILE_PREFIX "${PROJECT_SOURCE_DIR}/../builds/package")
78+
SET(CPACK_OUTPUT_FILE_PREFIX "${YADOMS_BINARY_DIR}/package")
7979
set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME "YadomsCore")
8080

8181
##################################################################################################

0 commit comments

Comments
 (0)