mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-19 18:30:34 +08:00
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:
parent
81c0241cf9
commit
9cf9f3489e
19
.github/workflows/aur.yml
vendored
Normal file
19
.github/workflows/aur.yml
vendored
Normal 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 }}
|
Loading…
Reference in New Issue
Block a user