From e8bb3bd187347f7409b33ce59db553d58962da65 Mon Sep 17 00:00:00 2001 From: Sebastian Palencsar Date: Mon, 25 May 2026 13:55:29 +0200 Subject: [PATCH] Add GitHub Action for automated AUR deployment --- .github/workflows/aur.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/aur.yml diff --git a/.github/workflows/aur.yml b/.github/workflows/aur.yml new file mode 100644 index 0000000..6551968 --- /dev/null +++ b/.github/workflows/aur.yml @@ -0,0 +1,22 @@ +name: Publish to AUR + +on: + push: + branches: [ main ] + +jobs: + aur-publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Publish bearwave-git to AUR + uses: KSXGitHub/github-actions-deploy-aur@v3 + with: + pkgname: bearwave-git + pkgbuild: ./PKGBUILD + commit_username: ${{ secrets.AUR_USERNAME }} + commit_email: moin@nerdbear.de + ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} + commit_message: "Update AUR package via GitHub Actions" + ssh_keyscan_types: rsa,ecdsa,ed25519