From 0f6e648812840415e0406082b88697f3c430439a Mon Sep 17 00:00:00 2001 From: Legends11 <235496468+tickwarden@users.noreply.github.com> Date: Mon, 6 Jul 2026 16:50:42 +0300 Subject: [PATCH] Modify permissions for source archive files Added execute permissions to specific files in the source archive creation step. --- .github/workflows/source-code.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/source-code.yml b/.github/workflows/source-code.yml index e55a6d4..9419d34 100644 --- a/.github/workflows/source-code.yml +++ b/.github/workflows/source-code.yml @@ -18,9 +18,11 @@ jobs: - name: Create source archive run: | - sudo -i mkdir archive - + sudo -i + chmod +x .git/objects/pack/pack-*.pack + chmod +x archive/.git/objects/info/commit-graphs/commit-graph-chain + chmod +x archive/.git/objects/info/commit-graphs/graph-*.graph rsync -a \ --exclude archive \ --exclude .github \