Add workflow to update from AUR
Some checks failed
Wake Runner / build (push) Successful in 9s
Build and Push / build (push) Successful in 1m4s
Update from AUR / build (push) Has been cancelled

This commit is contained in:
Sebastiaan de Schaetzen 2025-04-23 11:13:19 +02:00
parent be759b1eb7
commit 0f18e248e6

View File

@ -0,0 +1,24 @@
name: Update from AUR
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-standard
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Add AUR repository
run: git remote add aur https://aur.archlinux.org/yay.git
- name: Fetch AUR
run: git fetch aur
- name: Rebase current changes
run: git rebase aur/master
- name: Push changes (if any)
run: git push origin master