Skip to content

Commit

Permalink
chmod
Browse files Browse the repository at this point in the history
  • Loading branch information
maciaszczykm committed Nov 25, 2024
1 parent 17e7885 commit 9aa1acf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
with:
Expand Down

0 comments on commit 9aa1acf

Please sign in to comment.