mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 04:09:09 +00:00
chore(actions): initial AUR packaging workflow impl
This commit is contained in:
parent
65cfd9f264
commit
1f5d330c35
1 changed files with 24 additions and 0 deletions
24
.github/workflows/aur.yml
vendored
Normal file
24
.github/workflows/aur.yml
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
name: Publish to AUR
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "*"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
name: Patch, Test and Publish PKGBUILD
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup docker CLI
|
||||
uses: actions-hub/docker/cli@master
|
||||
env:
|
||||
SKIP_LOGIN: true
|
||||
|
||||
- name: AUR Routine
|
||||
run: docker build -t aur_routine package/aur/Dockerfile && docker run aur_routine
|
Loading…
Reference in a new issue