-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e79b0d3
commit 5916891
Showing
1 changed file
with
6 additions
and
8 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 |
---|---|---|
|
@@ -67,7 +67,7 @@ jobs: | |
with: | ||
# this might remove tools that are actually needed, | ||
# if set to "true" but frees about 6 GB | ||
tool-cache: false | ||
tool-cache: true | ||
|
||
# all of these default to true, but feel free to set to | ||
# "false" if necessary for your workflow | ||
|
@@ -99,24 +99,22 @@ jobs: | |
env: | ||
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | ||
run: | | ||
echo "Configure Git" | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "GitHub Actions" | ||
echo "Configure SSH" | ||
SSH_DIR=$HOME/.ssh | ||
mkdir -p $SSH_DIR | ||
chmod 0700 $SSH_DIR | ||
echo "Add GitHub to known hosts" | ||
ssh-keyscan -t ed25519 -H github.com > $SSH_DIR/known_hosts | ||
chmod 600 $SSH_DIR/known_hosts | ||
echo "Install RA deployment token" | ||
echo "${{ secrets.RA_TOKEN }}" > $SSH_DIR/id_rsa | ||
chmod 600 $SSH_DIR/id_rsa | ||
ssh-agent -a $SSH_AUTH_SOCK > /dev/null | ||
ssh-add $SSH_DIR/id_rsa | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "GitHub Actions" | ||
- name: Build | ||
id: build | ||
env: | ||
|