aur-release.yml 880 B

12345678910111213141516171819202122232425
  1. name: action
  2. on:
  3. push:
  4. tags:
  5. - "*" # Run on any tag
  6. jobs:
  7. aur-publish:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/checkout@v2
  11. - name: Publish AUR package
  12. uses: anas-elgarhy/aur-release-action@v4.1
  13. with:
  14. ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
  15. github_token: ${{ secrets.GITHUB_TOKEN }}
  16. pkgbuild_path: archpackage/PKGBUILD # Use this if the PKGBUILD file is not in the root directory
  17. git_username: anas-elgarhy # Use this if you want to change the git username (recommended)
  18. git_email: anas.elgarhy.dev@gmail.com # Use this if you want to change the git email (recommended)
  19. commit_message: UpUp Update %FILENAME% to %VERSION% yoo # Use this if you want to change the commit message
  20. try_build_and_install: false
  21. update_pkgbuild: false