GitHub Actions to publish AUR package.
Optional AUR package name. If not specified the name will be extracted from the PKGBUILD file.
Optional Path to PKGBUILD file. This file is often generated by prior steps. The default value is './PKGBUILD'
Optional Newline-separated glob patterns for additional files to be added to the AUR repository. Glob patterns will be expanded by bash when copying the files to the repository.
Required The username to use when creating the new commit.
Required The email to use when creating the new commit.
Required Your private key with access to AUR package.
Optional Commit message to use when creating the new commit.
Optional Allow empty commits, i.e. commits with no change. The default value is true
.
Optional Use --force
when push to the AUR. The default value is false
.
Optional Comma-separated list of types to use when adding aur.archlinux.org to known hosts.
Optional Run makepkg -od
to update pkgver
. Requires that the pkgver()
function defined in the PKGBUILD
file doesn't required any dependencies other than git. The default value is false
.
name: aur-publish
on:
push:
tags:
- '*'
jobs:
aur-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Publish AUR package
uses: KSXGitHub/github-actions-deploy-aur@<TAG>
with:
pkgname: my-awesome-package
pkgbuild: ./PKGBUILD
commit_username: ${{ secrets.AUR_USERNAME }}
commit_email: ${{ secrets.AUR_EMAIL }}
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
commit_message: Update AUR package
ssh_keyscan_types: rsa,dsa,ecdsa,ed25519
Note: Replace <TAG>
in the above code snippet with a tag of this repo.
Tip: To create secrets (such as secrets.AUR_USERNAME
, secrets.AUR_EMAIL
, and secrets.AUR_SSH_PRIVATE_KEY
above), go to $YOUR_GITHUB_REPO_URL/settings/secrets
. Read this for more information.
Tip: This action does not generate PKGBUILD for you, you must generate it yourself (e.g. by using actions before this action).
sane-fmt has a workflow that builds and uploads executables to GitHub Release then generates PKGBUILD files for and use this very action to update aur/sane-fmt and aur/sane-fmt-bin.
pretty-exec has a workflow that builds and uploads executables to GitHub Release then generates PKGBUILD files for and use this very action to update aur/pretty-exec and aur/pretty-exec-bin.
build-fs-tree has a workflow that builds and uploads executables to GitHub Release then generates PKGBUILD files for and use this very action to update aur/build-fs-tree and aur/build-fs-tree-bin.
strip-ansi-cli has a workflow that builds and uploads executables to GitHub Release then generates PKGBUILD files for and use this very action to update aur/strip-ansi and aur/strip-ansi-bin.
parallel-disk-usage has a workflow that builds and uploads executables to GitHub Release then generates PKGBUILD files for and use this very action to update aur/parallel-disk-usage and aur/parallel-disk-usage-bin.