{"id":20820394,"url":"https://github.com/kyoh86/generate-pkgbuild-action","last_synced_at":"2026-04-10T11:01:27.132Z","repository":{"id":87033649,"uuid":"357933770","full_name":"kyoh86/generate-pkgbuild-action","owner":"kyoh86","description":"An action to generate PKGBUILD of the go-program for makepkg","archived":false,"fork":false,"pushed_at":"2025-12-26T15:09:49.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-26T22:49:28.341Z","etag":null,"topics":["actions","github","github-actions","go","makepkg","pkgbuild"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kyoh86.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2021-04-14T14:26:33.000Z","updated_at":"2025-12-26T15:09:53.000Z","dependencies_parsed_at":"2025-01-18T16:33:25.701Z","dependency_job_id":"71fa3fbd-a113-422b-b638-4bbdcd6e28bc","html_url":"https://github.com/kyoh86/generate-pkgbuild-action","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kyoh86/generate-pkgbuild-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyoh86%2Fgenerate-pkgbuild-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyoh86%2Fgenerate-pkgbuild-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyoh86%2Fgenerate-pkgbuild-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyoh86%2Fgenerate-pkgbuild-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kyoh86","download_url":"https://codeload.github.com/kyoh86/generate-pkgbuild-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyoh86%2Fgenerate-pkgbuild-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31639524,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T07:40:12.752Z","status":"ssl_error","status_checked_at":"2026-04-10T07:40:11.664Z","response_time":98,"last_error":"SSL_read: 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","github","github-actions","go","makepkg","pkgbuild"],"created_at":"2024-11-17T22:09:06.658Z","updated_at":"2026-04-10T11:01:27.116Z","avatar_url":"https://github.com/kyoh86.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# generate-pkgbuild-action\n\nThis action generates PKGBUILD of the go-program for `makepkg`.\n\n```yaml\n- name: Make PKGBUILD\n  if: startsWith(github.ref, 'refs/tags/')\n  uses: kyoh86/generate-pkgbuild-action@v1\n  with:\n    # (REQUIRED) License name\n    license: mit\n\n    # An email address of the author\n    email: me@kyoh86.dev\n\n    # A description for the package\n    description: \"A sample package\"\n\n    # Call `go run -tags man ./cmd/{entrypoint} man` to generate man page\n    makeman: true\n```\n\nA sample of the full-workflow:\n\n```yaml\nname: Generate PKGBUILD\non:\n  push:\n    tags:\n      - 'v*.*.*'\n\njobs:\n  generate-pkgbuild:\n    name: Generate PKGBUILD\n    runs-on: ubuntu-latest\n    if: startsWith(github.ref, 'refs/tags/')\n    steps:\n      - name: Checkout Sources\n        uses: actions/checkout@v2\n\n      - name: Make PKGBUILD\n        if: startsWith(github.ref, 'refs/tags/')\n        uses: kyoh86/generate-pkgbuild-action@v1\n        with:\n          # (REQUIRED) License name\n          license: mit\n\n          # An email address of the author\n          email: me@kyoh86.dev\n\n          # A description for the package\n          description: \"A sample package\"\n\n          # Call `go run -tags man ./cmd/{entrypoint} man` to generate man page\n          makeman: true\n\n      - name: Check PKGBUILD\n        if: startsWith(github.ref, 'refs/tags/')\n        uses: edlanglois/pkgbuild-action@v1\n\n      # If you want to upload PKGBUILD file to a release asset,\n      # use softprops/action-gh-release.\n      - name: Upload PKGBUILD to a release asset\n        uses: softprops/action-gh-release@v1\n        if: startsWith(github.ref, 'refs/tags/')\n        with:\n          files: \"*_PKGBUILD.tar.gz\"\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n\n      # You also can upload PKGBUILD file to an artifact\n      - name: Upload PKGBUILD to an artifact\n        uses: actions/upload-artifact@v6\n        with:\n          name: package\n          path: \"*_PKGBUILD.tar.gz\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkyoh86%2Fgenerate-pkgbuild-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkyoh86%2Fgenerate-pkgbuild-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkyoh86%2Fgenerate-pkgbuild-action/lists"}