mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 20:29:10 +00:00
25 lines
479 B
YAML
25 lines
479 B
YAML
|
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
|