From: Remi Gacogne Date: Tue, 16 Jul 2024 09:41:20 +0000 (+0200) Subject: build-packages: More lenient permissions on the packages directory X-Git-Tag: rec-5.2.0-alpha1~174^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F14474%2Fhead;p=thirdparty%2Fpdns.git build-packages: More lenient permissions on the packages directory We don't really the more restrictive `700` since all these artefacts are public anyway, and this breaks the current release workflow, so let's go with `755` instead. --- diff --git a/.github/workflows/build-packages.yml b/.github/workflows/build-packages.yml index 8fca85fae2..d6b69a16c4 100644 --- a/.github/workflows/build-packages.yml +++ b/.github/workflows/build-packages.yml @@ -247,6 +247,6 @@ jobs: echo "$SSHKEY" > ~/.ssh/id_ed25519 chmod 600 ~/.ssh/id_ed25519 echo "$HOSTKEY" > ~/.ssh/known_hosts - mkdir -m 700 -p "slsa/${PRODUCT}/${VERSION}/" + mkdir -m 755 -p "slsa/${PRODUCT}/${VERSION}/" mv ${{steps.download-provenance.outputs.download-path}}/*.jsonl "slsa/${PRODUCT}/${VERSION}" rsync -4rlptD slsa/* "$RSYNCTARGET"