{"id":30920703,"url":"https://github.com/stabldev/aur-publish-action","last_synced_at":"2026-05-07T10:32:03.641Z","repository":{"id":309921698,"uuid":"1037353724","full_name":"stabldev/aur-publish-action","owner":"stabldev","description":"GitHub Action to publish AUR packages.","archived":false,"fork":false,"pushed_at":"2025-08-15T12:17:23.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-10T03:11:52.904Z","etag":null,"topics":["actions","archlinux","aur","cicd","github-actions-docker"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stabldev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-13T12:54:16.000Z","updated_at":"2025-08-15T12:13:00.000Z","dependencies_parsed_at":"2025-08-14T16:26:46.090Z","dependency_job_id":null,"html_url":"https://github.com/stabldev/aur-publish-action","commit_stats":null,"previous_names":["stabldev/aur-publish-action"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/stabldev/aur-publish-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stabldev%2Faur-publish-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stabldev%2Faur-publish-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stabldev%2Faur-publish-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stabldev%2Faur-publish-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stabldev","download_url":"https://codeload.github.com/stabldev/aur-publish-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stabldev%2Faur-publish-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32733436,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actions","archlinux","aur","cicd","github-actions-docker"],"created_at":"2025-09-10T01:48:56.341Z","updated_at":"2026-05-07T10:32:03.626Z","avatar_url":"https://github.com/stabldev.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# aur-publish-action\nGitHub Action that generates a `PKGBUILD` from a template and publishes it to the [AUR](https://aur.archlinux.org/).\n\n## Inputs\n\n- **`pkgname`** (*required*) - AUR package name.\n- **`pkgver`** (*required*) - AUR package version.\n- **`pkgbuild_template`** (*optional*, default: `./pkgbuild-template/PKGBUILD`) - Path to `PKGBUILD` template.\n- **`commit_username`** (*optional*, default: `github-actions[bot]`) - The username to use when creating new commit.\n- **`commit_email`** (*optional*, default: `41898282+github-actions[bot]@users.noreply.github.com`) - The email to use when creating new commit.\n- **`aur_ssh_private_key`** (*required*) - Your private key with access to AUR package.\n\n## PKGBUILD Template Example\n\nPlace your `PKGBUILD` template in a directory (default: `pkgbuild-template`) and let the action fill in `pkgname`, `pkgver`, and `sha256sums` automatically. Example:\n\n```bash\n# Maintainer: stabldev \u003cthestabldev@gmail.com\u003e\n# This is not a full PKGBUILD\n# pkgname, pkgver, and sha256sums are to be generated\n\npkgrel=1\npkgdesc=\"Empty test package\"\narch=(\"any\")\nlicense=(\"MIT\")\nsource=(\"https://github.githubassets.com/favicons/favicon.png\")\nsha256sums=()\n\npackage() {\n  install -Dm644 \"$srcdir/favicon.png\" \"$pkgdir/usr/share/$pkgname/favicon.png\"\n}\n```\n\n## Example Usage\n\nCreate a workflow `.github/workflows/publish.yml`:\n\n```yaml\nname: Publish AUR Package\n\non:\n  push:\n    tags:\n      - '*'\n\njobs:\n  aur-publish:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n\n      - name: Publish to AUR\n        uses: stabldev/aur-publish-action@v1\n        with:\n          pkgname: my-awesome-package\n          pkgver: ${{ github.ref_name }}\n          aur_ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}\n```\n\n**Tip:** To create secrets (such as `secrets.AUR_USERNAME`, `secrets.AUR_EMAIL`, and `secrets.AUR_SSH_PRIVATE_KEY` above), go to `$YOUR_GITHUB_REPO_URL/settings/secrets`.  \n[Read this for more information](https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets).\n\n## Acknowledgements\n\nThis action was inspired by [KSXGitHub/github-actions-deploy-aur](https://github.com/KSXGitHub/github-actions-deploy-aur).  \nUnlike that project, this action adds automatic `PKGBUILD` generation and checksum updates.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstabldev%2Faur-publish-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstabldev%2Faur-publish-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstabldev%2Faur-publish-action/lists"}