mirror of https://github.com/ppy/SDL3-CS.git
Fix dubious ownership in repository when running in container
This commit is contained in:
parent
3471b34007
commit
477bd7da13
|
|
@ -43,9 +43,6 @@ jobs:
|
|||
-e BUILD_TYPE=${{ env.BUILD_TYPE }}
|
||||
run: |
|
||||
cd /workspace
|
||||
git config --global --add safe.directory /workspace/External/SDL
|
||||
git config --global --add safe.directory /workspace/External/SDL_image
|
||||
git config --global --add safe.directory /workspace/External/SDL_ttf
|
||||
./External/build.sh
|
||||
|
||||
- name: Build
|
||||
|
|
|
|||
|
|
@ -73,6 +73,10 @@ if [[ $RUNNER_OS == 'Linux' ]]; then
|
|||
libpulse-dev$TARGET_APT_ARCH \
|
||||
libpipewire-0.3-dev$TARGET_APT_ARCH \
|
||||
libdecor-0-dev$TARGET_APT_ARCH
|
||||
|
||||
git config --global --add safe.directory /workspace/External/SDL
|
||||
git config --global --add safe.directory /workspace/External/SDL_image
|
||||
git config --global --add safe.directory /workspace/External/SDL_ttf
|
||||
fi
|
||||
|
||||
# Build SDL
|
||||
|
|
|
|||
Loading…
Reference in New Issue