Thanks to visit codestin.com
Credit goes to github.com

Skip to content

KSXGitHub/github-actions-deploy-aur

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace
 
 

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: [email protected]
          ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}

Thanks

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

Sponsor this project

  •  

Packages

No packages published

Contributors 13