From c722e96da298c869fa87a4a02d6e83381d918c27 Mon Sep 17 00:00:00 2001 From: Eren Dogan Date: Sat, 28 Jan 2023 17:23:34 -0800 Subject: [PATCH] Give all permissions for the archive files --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae7262ea..5145e6ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,4 +41,5 @@ jobs: export ARCHIVE_DIR="/tmp/github_runner_fail_${{ github.run_id }}_${{ github.run_attempt }}" mkdir -p $ARCHIVE_DIR cp -r ${{ github.workspace }}/compiler/tests/results/* $ARCHIVE_DIR + chmod -R 777 $ARCHIVE_DIR echo "Files of this run are located in $ARCHIVE_DIR"