-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove obsolete ssh crap from action
- Loading branch information
Showing
1 changed file
with
0 additions
and
14 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 |
---|---|---|
|
@@ -16,20 +16,6 @@ jobs: | |
with: | ||
node-version: '18.16.1' # Choose the Node.js version you need | ||
|
||
- name: Set up Git user and email | ||
run: | | ||
git config --global user.name "Maximilian Marschall" | ||
git config --global user.email "[email protected]" | ||
- name: set up ssh | ||
run: | | ||
ssh-keygen -t rsa -b 4096 -N "" -f ~/.ssh/id_rsa | ||
chmod 600 ~/.ssh/id_rsa | ||
eval "$(ssh-agent -s)" | ||
ssh-add ~/.ssh/id_rsa | ||
ssh-add -L | ||
ssh-keyscan github.com >> ~/.ssh/known_hosts | ||
- name: Install specific effekt | ||
run: | | ||
git clone https://github.com/effekt-lang/effekt.git && | ||
|