-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: allow action read access to repo
- Loading branch information
Showing
1 changed file
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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.
Sorry, something went wrong. |
||
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 | ||
|
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 : ) )