From 1f5d330c35574a4d1d5a4d163aa7c628291d2308 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Mon, 24 Jul 2023 16:45:25 +0530 Subject: [PATCH] chore(actions): initial AUR packaging workflow impl --- .github/workflows/aur.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/aur.yml diff --git a/.github/workflows/aur.yml b/.github/workflows/aur.yml new file mode 100644 index 0000000..70f2f14 --- /dev/null +++ b/.github/workflows/aur.yml @@ -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