GitHub Action for UPX, the Ultimate Packer for eXecutables
Go to file
dependabot[bot] 1290965b7a
Bump @actions/tool-cache from 1.3.5 to 1.5.5 (#107)
Bumps [@actions/tool-cache](https://github.com/actions/toolkit/tree/HEAD/packages/tool-cache) from 1.3.5 to 1.5.5.
- [Release notes](https://github.com/actions/toolkit/releases)
- [Changelog](https://github.com/actions/toolkit/blob/master/packages/tool-cache/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/tool-cache)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-05-20 04:02:01 +00:00
__tests__ Cleanup code and tests 2020-05-07 12:11:19 +02:00
.github Fix automerge 2020-05-14 07:16:15 +02:00
dist Update generated content 2020-05-13 12:30:41 +00:00
src Fix github release tag 2020-05-07 12:13:21 +02:00
.editorconfig Initial commit 2020-01-08 22:26:34 +01:00
.gitattributes Use ncc and clean workflows 2020-04-09 02:32:42 +02:00
.gitignore Use ncc and clean workflows 2020-04-09 02:32:42 +02:00
.prettierrc.json Initial commit 2020-01-08 22:26:34 +01:00
action.yml Update action yml 2020-05-11 19:25:20 +02:00
CHANGELOG.md Update README 2020-05-11 19:26:15 +02:00
jest.config.js Cleanup code and tests 2020-05-07 12:11:19 +02:00
LICENSE Initial commit 2020-01-08 22:26:34 +01:00
package-lock.json Bump @actions/tool-cache from 1.3.5 to 1.5.5 (#107) 2020-05-20 04:02:01 +00:00
package.json Bump @actions/tool-cache from 1.3.5 to 1.5.5 (#107) 2020-05-20 04:02:01 +00:00
README.md Update README 2020-05-11 19:25:43 +02:00
tsconfig.json Add Codecov 2020-05-06 21:17:47 +02:00

GitHub release GitHub marketplace Test workflow Codecov Become a sponsor Paypal Donate

About

GitHub Action for UPX, the Ultimate Packer for eXecutables.

Usage

name: upx

on:
  pull_request:
  push:

jobs:
  upx:
    runs-on: ubuntu-latest
    steps:
      -
        name: Checkout
        uses: actions/checkout@v2
      -
        name: Run UPX
        uses: crazy-max/ghaction-upx@v1
        with:
          version: latest
          file: ./bin/mybinary
          args: -fq

Customizing

inputs

Following inputs can be used as step.with keys

Name Type Default Description
version String latest UPX version. Example: v3.95
file String File to compress (required)
args String Arguments to pass to UPX

Limitation

This action is only available for Linux and Windows virtual environments.

How can I help ?

All kinds of contributions are welcome 🙌! The most basic way to show your support is to star 🌟 the project, or to raise issues 💬 You can also support this project by becoming a sponsor on GitHub 👏 or by making a Paypal donation to ensure this journey continues indefinitely! 🚀

Thanks again for your support, it is much appreciated! 🙏

License

MIT. See LICENSE for more details.