Implementation of Automatic AUR Build (#309)

Now we have a scheduled AUR build checker, in case some of our commits breaks AUR!
ps: `makepkg` sucks. I had to patch before use it.
This commit is contained in:
DuckSoft 2020-02-08 02:17:41 +08:00 committed by GitHub
parent 81c0241cf9
commit 9cf9f3489e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

19
.github/workflows/aur.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: AUR Test Build
on:
push:
paths-ignore: [README.md]
release: {}
schedule:
- cron: "0 19 * * *"
jobs:
aur:
strategy:
fail-fast: true
matrix:
repo: [qv2ray, qv2ray-dev-git]
runs-on: [ubuntu-latest]
steps:
- uses: DuckSoft/build-aur-action@v1.0
with:
repo-name: ${{ matrix.repo }}