yay/.gitea/workflows/update.yml
Sebastiaan de Schaetzen f4b433c4f8
Some checks failed
Wake Runner / build (push) Successful in 5s
Update from AUR / build (push) Failing after 12s
Build and Push / build (push) Successful in 45s
Update update workflow
2025-04-23 11:15:49 +02:00

25 lines
491 B
YAML

name: Update from AUR
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
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