sigh
Some checks failed
Auto-update AUR / update-aur (push) Failing after 29s

This commit is contained in:
creations 2025-05-13 18:48:10 -04:00
parent 55310dab56
commit f04605a5e8
Signed by: creations
GPG key ID: 8F553AA4320FC711

View file

@ -38,9 +38,13 @@ jobs:
StrictHostKeyChecking no
EOF
- name: Sync with AUR master before changes
- name: Configure AUR remote and sync
run: |
git remote add aur ssh://aur@aur.archlinux.org/navithingy-git.git
if ! git remote | grep -q "^aur$"; then
git remote add aur ssh://aur@aur.archlinux.org/navithingy-git.git
else
git remote set-url aur ssh://aur@aur.archlinux.org/navithingy-git.git
fi
git fetch aur master
git rebase aur/master
@ -67,10 +71,6 @@ jobs:
- name: Push to AUR
run: |
git remote add aur ssh://aur@aur.archlinux.org/navithingy-git.git
git fetch aur master
git rebase aur/master
git reset
git add PKGBUILD .SRCINFO navithingy-git.install
@ -81,4 +81,3 @@ jobs:
git commit -m "Update to ${{ env.pkgver }}"
git push aur HEAD:master