Skip to content

yuezk/github-actions-deploy-aur

 
 

Repository files navigation

Publish AUR packages

This action can publish an AUR package.

Requirements

This action only modifies existing AUR package and publish it. Make sure targeted package exists first.

Inputs

pkgname

Required The AUR package name you want to update.

pkgver

Required The AUR package version you want to update.

commit_username

Required The username to use when creating the new commit.

commit_email

Required The email to use when creating the new commit.

ssh_private_key

Required Your private key with access to AUR package.

Example usage

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: github-action-bot@example.com
          ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}

Thanks

This repository is a fork of https://github.com/guumaster/aur-publish-docker-action.git

About

GitHub Actions to publish AUR package

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 90.7%
  • Dockerfile 9.3%