feat: add arch pkgbuild update automatically based off commit #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Arch Linux AUR Package Update | |
on: | |
push: | |
branches: ["main"] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Publish parallel-disk-usage to the AUR | |
uses: KSXGitHub/[email protected] | |
with: | |
pkgname: linux-wallpaperengine-git | |
pkgbuild: ./packaging/archlinux/PKGBUILD | |
commit_username: ${{ secrets.AUR_USERNAME }} | |
commit_email: ${{ secrets.AUR_EMAIL }} | |
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }} | |
commit_message: Update AUR package | |
force_push: 'true' |