This action can publish an AUR package.
This action only modifies existing AUR package and publish it. Make sure targeted package exists first.
Required The AUR package name you want to update.
Required The AUR package version you want to update.
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.
name: aur-publish
on:
push:
tags:
- '*'
jobs:
aur-publish:
runs-on: ubuntu-latest
steps:
- name: Publish AUR package
uses: KSXGitHub/github-actions-deploy-aur@master
with:
pkgname: my-awesome-package
pkgver: 1.2.3
commit_username: 'Github Action Bot'
commit_email: [email protected]
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
This repository is a fork of https://github.com/guumaster/aur-publish-docker-action.git