From 7681bb4e7913147eeff9ec5981b6dfdba13f8fe8 Mon Sep 17 00:00:00 2001 From: creations Date: Tue, 13 May 2025 18:41:12 -0400 Subject: [PATCH] again gonna die --- .forgejo/workflows/update-aur.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/update-aur.yml b/.forgejo/workflows/update-aur.yml index 9618438..b76d807 100644 --- a/.forgejo/workflows/update-aur.yml +++ b/.forgejo/workflows/update-aur.yml @@ -38,6 +38,12 @@ jobs: StrictHostKeyChecking no EOF + - name: Sync with AUR master before changes + run: | + git remote add aur ssh://aur@aur.archlinux.org/navithingy-git.git + git fetch aur master + git rebase aur/master + - name: Clone upstream NaviThingy and compute pkgver run: | git clone --depth=1 https://github.com/vMohammad24/NaviThingy.git NaviThingy @@ -61,10 +67,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 add PKGBUILD .SRCINFO if git diff --cached --quiet; then echo "No changes to commit." @@ -72,4 +74,3 @@ jobs: fi git commit -m "Update to ${{ env.pkgver }}" git push aur HEAD:master -