{"id":13531039,"url":"https://github.com/crazy-max/ghaction-upx","last_synced_at":"2025-04-05T12:07:58.400Z","repository":{"id":37828980,"uuid":"232635825","full_name":"crazy-max/ghaction-upx","owner":"crazy-max","description":"GitHub Action for UPX, the Ultimate Packer for eXecutables","archived":false,"fork":false,"pushed_at":"2024-10-07T19:49:10.000Z","size":10980,"stargazers_count":55,"open_issues_count":5,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-18T07:31:10.136Z","etag":null,"topics":["actions","github-actions","upx"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/upx-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},"funding":{"github":"crazy-max","custom":"https://www.paypal.me/crazyws"}},"created_at":"2020-01-08T18:55:13.000Z","updated_at":"2024-07-20T18:06:19.000Z","dependencies_parsed_at":"2024-03-28T01:25:47.575Z","dependency_job_id":"d093b793-259a-4403-822b-e5891d72e329","html_url":"https://github.com/crazy-max/ghaction-upx","commit_stats":{"total_commits":332,"total_committers":6,"mean_commits":"55.333333333333336","dds":0.5060240963855422,"last_synced_commit":"06e76b7e3d8c97f84dc9245ea942981853f2fd79"},"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Fghaction-upx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Fghaction-upx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Fghaction-upx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazy-max%2Fghaction-upx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crazy-max","download_url":"https://codeload.github.com/crazy-max/ghaction-upx/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247332612,"owners_count":20921853,"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","upx"],"created_at":"2024-08-01T07:00:59.298Z","updated_at":"2025-04-05T12:07:58.356Z","avatar_url":"https://github.com/crazy-max.png","language":"TypeScript","funding_links":["https://github.com/sponsors/crazy-max","https://www.paypal.me/crazyws"],"categories":["Community Resources","TypeScript"],"sub_categories":["Utility"],"readme":"[![GitHub release](https://img.shields.io/github/release/crazy-max/ghaction-upx.svg?style=flat-square)](https://github.com/crazy-max/ghaction-upx/releases/latest)\n[![GitHub marketplace](https://img.shields.io/badge/marketplace-upx--github--action-blue?logo=github\u0026style=flat-square)](https://github.com/marketplace/actions/upx-github-action)\n[![Test workflow](https://img.shields.io/github/actions/workflow/status/crazy-max/ghaction-upx/test.yml?branch=master\u0026label=test\u0026logo=github\u0026style=flat-square)](https://github.com/crazy-max/ghaction-upx/actions?workflow=test)\n[![Codecov](https://img.shields.io/codecov/c/github/crazy-max/ghaction-upx?logo=codecov\u0026style=flat-square)](https://codecov.io/gh/crazy-max/ghaction-upx)\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 [UPX](https://github.com/upx/upx), the Ultimate Packer for eXecutables.\n\n![Screenshot](.github/ghaction-upx.png)\n\n___\n\n* [Usage](#usage)\n* [Customizing](#customizing)\n  * [inputs](#inputs)\n* [Limitation](#limitation)\n* [Contributing](#contributing)\n* [License](#license)\n\n## Usage\n\n```yaml\nname: upx\n\non:\n  push:\n\njobs:\n  upx:\n    runs-on: ubuntu-latest\n    steps:\n      -\n        name: Checkout\n        uses: actions/checkout@v4\n      -\n        name: Run UPX\n        uses: crazy-max/ghaction-upx@v3\n        with:\n          version: latest\n          files: |\n            ./bin/*.exe\n          args: -fq\n```\n\nIf you just want to install UPX:\n\n```yaml\nname: upx\n\non:\n  push:\n\njobs:\n  upx:\n    runs-on: ubuntu-latest\n    steps:\n      -\n        name: Checkout\n        uses: actions/checkout@v4\n      -\n        name: Install UPX\n        uses: crazy-max/ghaction-upx@v3\n        with:\n          install-only: true\n      -\n        name: UPX version\n        run: upx --version\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` | UPX version. Example: `v3.95`                              |\n| `files`        | String |          | Newline-delimited list of path globs for files to compress |\n| `args`         | String |          | Arguments to pass to UPX                                   |\n| `install-only` | String | `false`  | Just install UPX                                           |\n\n## Limitation\n\nThis action is only available for Linux and Windows [virtual environments](https://help.github.com/en/articles/virtual-environments-for-github-actions#supported-virtual-environments-and-hardware-resources).\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-upx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrazy-max%2Fghaction-upx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrazy-max%2Fghaction-upx/lists"}