Skip to content

Commit

Permalink
fix: allow action read access to repo
Browse files Browse the repository at this point in the history
  • Loading branch information
johnletey committed May 27, 2024
1 parent e19adfc commit 7df3813
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ jobs:
build-dir: simapp
binaries: |
- simapp/build/simd
# NOTE: This allows Heighliner access to repository. Remove once public.
pre-build: |
mkdir -p ~/.ssh
echo "${{ secrets.HEIGHLINER_KEY }}" | base64 -d > ~/.ssh/id_ed25519

This comment has been minimized.

Copy link
@boojamya

boojamya May 27, 2024

Contributor

Hmm @johnletey ,
Just checking but you did the HEIGHLINER_KEY secret to this repository?
(FYI, I don't have access to the settings section of this repo, else I would check : ) )

chmod 600 ~/.ssh/id_ed25519
apk add openssh
git config --global --add url."ssh://[email protected]/".insteadOf "https://github.com/"
ssh-keyscan github.com >> ~/.ssh/known_hosts
- name: Publish Tarball as Artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 7df3813

Please sign in to comment.