-
-
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.
- Loading branch information
1 parent
6242786
commit aad5b56
Showing
1 changed file
with
4 additions
and
4 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 |
---|---|---|
|
@@ -24,10 +24,10 @@ jobs: | |
cd fixit | ||
sudo -u build ./packaging/aur${{ matrix.aur_repo }}.sh v0.3.1-beta | ||
sudo -u build bash -c 'eval "$(ssh-agent -s)"' | ||
sudo -u build mkdir ~/.ssh | ||
sudo -u build echo "${{ secrets.AUR_SSH_KEY }}" >> ~/.ssh/id_ed25519 | ||
sudo -u build chmod 600 ~/.ssh/id_ed25519 | ||
sudo -u build ssh-add ~/.ssh/id_ed25519 | ||
sudo -u build mkdir '~/.ssh' | ||
sudo -u build bash -c 'echo "${{ secrets.AUR_SSH_KEY }}" >> ~/.ssh/id_ed25519' | ||
sudo -u build chmod 600 '~/.ssh/id_ed25519' | ||
sudo -u build ssh-add '~/.ssh/id_ed25519' | ||
git clone [email protected]/fixit${{ matrix.aur_repo }}.git aur | ||
chown -R build aur | ||
cd aur | ||
|