add step for fix perm

This commit is contained in:
0FL01 2025-07-22 07:32:47 +03:00
parent bb27493248
commit 8774640c27

View file

@ -12,6 +12,14 @@ jobs:
- name: Checkout main repository
uses: actions/checkout@v4
- name: Force clean git cache permissions
run: |
if [ -d "./git-cache" ]; then
sudo find ./git-cache -type d -exec chmod 755 {} \;
sudo find ./git-cache -type f -exec chmod 644 {} \;
sudo chown -R $(id -u):$(id -g) ./git-cache || true
fi
- name: Cache Git dependencies
id: cache-git-repos
uses: actions/cache@v4