mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 12:19:09 +00:00
27 lines
541 B
YAML
27 lines
541 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: debug
|
|
run: ls /home/runner/work/lune/lune
|
|
|
|
- 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 && docker run aur_routine
|