From 9aa1acfcf8f7ca92cd3a8279ad2d1662a367f1a9 Mon Sep 17 00:00:00 2001 From: Marcin Maciaszczyk Date: Mon, 25 Nov 2024 12:39:56 +0100 Subject: [PATCH] chmod --- .github/workflows/e2e.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 5a4ac84a..be77ff2c 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -59,7 +59,9 @@ jobs: - name: Store test timestamp run: echo "TIMESTAMP=$(date +'%s')" >> $GITHUB_ENV - name: Retrieve the test repository private key and decode it to a file - run: (base64 -d <<< ${{ secrets.E2E_REPO_PRIVATE_KEY }}) >> ${{ env.E2E_PRIVATE_KEY_PATH }} + run: | + (base64 -d <<< ${{ secrets.E2E_REPO_PRIVATE_KEY }}) >> ${{ env.E2E_PRIVATE_KEY_PATH }} + chmod 0600 ${{ env.E2E_PRIVATE_KEY_PATH }} - name: Setup Go uses: actions/setup-go@v4.1.0 with: