2022-11-09 11:17:45 +00:00
|
|
|
name: aur-release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- "*" # Run on any tag
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
aur-publish:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-01-28 23:35:09 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-11-09 11:17:45 +00:00
|
|
|
|
|
|
|
- name: Publish AUR package
|
2022-11-14 19:28:42 +00:00
|
|
|
uses: anas-elgarhy/aur-release-action@v4.1
|
2022-11-09 11:17:45 +00:00
|
|
|
with:
|
|
|
|
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
2022-11-09 11:33:57 +00:00
|
|
|
pkgbuild_path: archpackage/PKGBUILD # Use this if the PKGBUILD file is not in the root directory
|
2022-11-13 13:43:14 +00:00
|
|
|
# aur_submodule_path: archpackage/aarty
|
2022-11-09 11:17:45 +00:00
|
|
|
git_username: Anas Elgarhy # Use this if you want to change the git username (recommended)
|
|
|
|
git_email: anas.elgarhy.dev@gmail.com # Use this if you want to change the git email (recommended)
|
|
|
|
commit_message: UpUp Update %FILENAME% to %VERSION% yoo # Use this if you want to change the commit message
|
2022-11-12 16:26:56 +00:00
|
|
|
try_build_and_install: false
|