{"id":15674369,"url":"https://github.com/crazy-max/ghaction-hugo","last_synced_at":"2025-07-20T01:32:22.540Z","repository":{"id":35212251,"uuid":"214520580","full_name":"crazy-max/ghaction-hugo","owner":"crazy-max","description":"GitHub Action for Hugo, the world's fastest framework for building websites","archived":false,"fork":false,"pushed_at":"2025-06-23T12:01:46.000Z","size":5444,"stargazers_count":15,"open_issues_count":2,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-05T02:32:25.265Z","etag":null,"topics":["actions","github-actions","hugo"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/hugo-github-action","language":"TypeScript","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/crazy-max.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":".github/SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"crazy-max","custom":"https://www.paypal.me/crazyws"}},"created_at":"2019-10-11T20:09:04.000Z","updated_at":"2025-04-20T14:57:45.000Z","dependencies_parsed_at":"2023-12-08T13:24:06.246Z","dependency_job_id":"54858397-d07d-437f-864a-cc1f297c5d52","html_url":"https://github.com/crazy-max/ghaction-hugo","commit_stats":{"total_commits":429,"total_committers":5,"mean_commits":85.8,"dds":0.5407925407925408,"last_synced_commit":"d163818e56169e5872fe3afbe6904535bbeb5511"},"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/crazy-max/ghaction-hugo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Fghaction-hugo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Fghaction-hugo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Fghaction-hugo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Fghaction-hugo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crazy-max","download_url":"https://codeload.github.com/crazy-max/ghaction-hugo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Fghaction-hugo/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266053826,"owners_count":23869496,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-actions","hugo"],"created_at":"2024-10-03T15:44:13.723Z","updated_at":"2025-07-20T01:32:22.517Z","avatar_url":"https://github.com/crazy-max.png","language":"TypeScript","funding_links":["https://github.com/sponsors/crazy-max","https://www.paypal.me/crazyws"],"categories":[],"sub_categories":[],"readme":"[![GitHub release](https://img.shields.io/github/release/crazy-max/ghaction-hugo.svg?style=flat-square)](https://github.com/crazy-max/ghaction-hugo/releases/latest)\n[![GitHub marketplace](https://img.shields.io/badge/marketplace-hugo--github--action-blue?logo=github\u0026style=flat-square)](https://github.com/marketplace/actions/hugo-github-action)\n[![Test workflow](https://img.shields.io/github/actions/workflow/status/crazy-max/ghaction-hugo/test.yml?branch=master\u0026label=test\u0026logo=github\u0026style=flat-square)](https://github.com/crazy-max/ghaction-hugo/actions?workflow=test)\n[![Codecov](https://img.shields.io/codecov/c/github/crazy-max/ghaction-hugo?logo=codecov\u0026style=flat-square)](https://codecov.io/gh/crazy-max/ghaction-hugo)\n[![Become a sponsor](https://img.shields.io/badge/sponsor-crazy--max-181717.svg?logo=github\u0026style=flat-square)](https://github.com/sponsors/crazy-max)\n[![Paypal Donate](https://img.shields.io/badge/donate-paypal-00457c.svg?logo=paypal\u0026style=flat-square)](https://www.paypal.me/crazyws)\n\n## About\n\nGitHub Action for [Hugo](https://gohugo.io/), the world's fastest framework for\nbuilding websites.\n\n![Hugo GitHub Action](.github/ghaction-hugo.png)\n\n___\n\n* [Usage](#usage)\n* [Customizing](#customizing)\n  * [inputs](#inputs)\n* [Contributing](#contributing)\n* [License](#license)\n\n## Usage\n\n```yaml\nname: hugo\n\non:\n  push:\n  pull_request:\n\njobs:\n  hugo:\n    runs-on: ubuntu-latest\n    steps:\n      -\n        name: Checkout\n        uses: actions/checkout@v4\n      -\n        name: Run Hugo\n        uses: crazy-max/ghaction-hugo@v3\n        with:\n          version: latest\n          extended: false\n          args: --cleanDestinationDir --minify --verbose\n      -\n        name: Deploy to GitHub Pages\n        if: github.event_name != 'pull_request'\n        uses: crazy-max/ghaction-github-pages@v4\n        with:\n          target_branch: gh-pages\n          build_dir: public\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n```\n\n## Customizing\n\n### inputs\n\nThe following inputs can be used as `step.with` keys\n\n| Name          | Type    | Default   | Description                      |\n|---------------|---------|-----------|----------------------------------|\n| `version`     | String  | `latest`  | Hugo version. Example: `v0.58.3` |\n| `extended`    | Bool    | `false`   | Use Hugo extended                |\n| `args`        | String  |           | Arguments to pass to Hugo        |\n\n## Contributing\n\nWant to contribute? Awesome! The most basic way to show your support is to star\nthe project, or to raise issues. You can also support this project by [**becoming a sponsor on GitHub**](https://github.com/sponsors/crazy-max)\nor by making a [PayPal donation](https://www.paypal.me/crazyws) to ensure this\njourney continues indefinitely!\n\nThanks again for your support, it is much appreciated! :pray:\n\n## License\n\nMIT. See `LICENSE` for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrazy-max%2Fghaction-hugo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrazy-max%2Fghaction-hugo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrazy-max%2Fghaction-hugo/lists"}