yay/.gitea/workflows/update.yml
Sebastiaan de Schaetzen 0f18e248e6
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
Add workflow to update from AUR
2025-04-23 11:13:19 +02:00

25 lines
493 B
YAML

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