From 7a0db75ffe8684f899f03726e6bd588612aa55e2 Mon Sep 17 00:00:00 2001 From: Dummerle <44114474+Dummerle@users.noreply.github.com> Date: Wed, 17 Mar 2021 10:18:42 +0100 Subject: [PATCH 1/2] Update release.yml --- .github/workflows/release.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 830f7ca1..23c67f90 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,3 +31,26 @@ jobs: run: | python setup.py sdist bdist_wheel twine upload dist/* + + aur-publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Generate PKGBUILD + run: + ./.github/GenPKG.sh + + - name: Upload + uses: KSXGitHub/github-actions-deploy-aur@ + with: + pkgname: rare + pkgbuild: ./.github/rare/PKGBUILD + commit_username: Dummerle + commit_email: ${{ secrets.MAIL }} + ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} + commit_message: Update AUR package + + + + + From 3381e54729199ff691678b4d6822c88901dc7048 Mon Sep 17 00:00:00 2001 From: Dummerle <44114474+Dummerle@users.noreply.github.com> Date: Wed, 17 Mar 2021 10:21:26 +0100 Subject: [PATCH 2/2] fix release.yml --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 23c67f90..f7beb6d1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,7 +41,7 @@ jobs: ./.github/GenPKG.sh - name: Upload - uses: KSXGitHub/github-actions-deploy-aur@ + uses: KSXGitHub/github-actions-deploy-aur@v2.2.3 with: pkgname: rare pkgbuild: ./.github/rare/PKGBUILD