Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene-babichenko committed Jun 23, 2024
1 parent 6242786 commit aad5b56
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-makepkg-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit aad5b56

Please sign in to comment.