From f88998faf52f85c7b971b1245f730ea93e313b85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sch=C3=B6nauer?= <37108907+DottoDev@users.noreply.github.com> Date: Mon, 31 Oct 2022 17:06:34 +0000 Subject: [PATCH] Release pipeline (#99) * New CD pipeline * Add AUR CD pipeline --- .github/workflows/update_aur.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/update_aur.yml diff --git a/.github/workflows/update_aur.yml b/.github/workflows/update_aur.yml new file mode 100644 index 00000000..2fc0df1d --- /dev/null +++ b/.github/workflows/update_aur.yml @@ -0,0 +1,18 @@ +name: Publish to AUR + +on: + push: + tags: + - "v*" + +jobs: + aur-publish: + runs-on: ubuntu-latest + steps: + - name: Publish AUR package + uses: ATiltedTree/create-aur-release@v1 + with: + package_name: topgrade + commit_username: "Thomas Schönauer" + commit_email: t.schoenauer@hgs-wt.at + ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}