https://github.com/ojford/create-aur-release
Bumps your AUR packages on tag creation
https://github.com/ojford/create-aur-release
Last synced: about 2 months ago
JSON representation
Bumps your AUR packages on tag creation
- Host: GitHub
- URL: https://github.com/ojford/create-aur-release
- Owner: OJFord
- License: mit
- Created: 2020-10-02T22:06:37.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-02T23:28:34.000Z (about 5 years ago)
- Last Synced: 2025-04-03T15:43:13.640Z (6 months ago)
- Language: Shell
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Create AUR Release
A simple yet powerful action to automatically update your AUR package to the version you just tagged on github.
## Inputs
| Input | Required | Description |
| ----------------- | -------- | ------------------------------------------------------------- |
| `package_name` | `true` | The name of the AUR package to update. |
| `commit_username` | `true` | The username to use when creating the new commit. |
| `commit_email` | `true` | The email to use when creating the new commit. |
| `ssh_private_key` | `true` | The SSH private key with access to the specified AUR package. |## Example
```yaml
name: Publishon:
push:
tags:
- "v*"jobs:
aur-publish:
runs-on: ubuntu-latest
steps:
- name: Publish AUR package
uses: ATiltedTree/create-aur-release@v1
with:
package_name: my-awesome-package
commit_username: "Github Action Bot"
commit_email: github-action-bot@example.com
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
```