GitHub Action for UPX, the Ultimate Packer for eXecutables
Go to file
dependabot-preview[bot] 4ae4445950
Bump @actions/tool-cache from 1.3.1 to 1.3.2 (#34)
Bumps [@actions/tool-cache](https://github.com/actions/toolkit/tree/HEAD/packages/tool-cache) from 1.3.1 to 1.3.2.
- [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-preview[bot] <support@dependabot.com>

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-03-09 15:24:19 +01:00
__tests__ Initial commit 2020-01-08 22:26:34 +01:00
.dependabot Settings 2020-02-12 10:20:40 +01:00
.github Settings 2020-02-12 10:20:40 +01:00
lib Update node_modules 2020-01-17 09:39:25 +01:00
node_modules Update node_modules 2020-03-03 09:02:35 +00:00
src Update node_modules 2020-01-17 09:39:25 +01:00
.editorconfig Initial commit 2020-01-08 22:26:34 +01:00
.gitattributes Settings 2020-02-12 10:20:40 +01:00
.gitignore Initial commit 2020-01-08 22:26:34 +01:00
.prettierrc.json Initial commit 2020-01-08 22:26:34 +01:00
action.yml Fix name 2020-01-17 09:48:20 +01:00
jest.config.js Initial commit 2020-01-08 22:26:34 +01:00
LICENSE Initial commit 2020-01-08 22:26:34 +01:00
package-lock.json Bump @actions/tool-cache from 1.3.1 to 1.3.2 (#34) 2020-03-09 15:24:19 +01:00
package.json Bump @actions/tool-cache from 1.3.1 to 1.3.2 (#34) 2020-03-09 15:24:19 +01:00
README.md Update README 2020-01-23 15:12:43 +01:00
tsconfig.json Initial commit 2020-01-08 22:26:34 +01:00

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

About

GitHub Action for UPX, the Ultimate Packer for eXecutables.

Usage

Below is a simple snippet to use this action. A live example is also available for this repository.

name: upx

on:
  pull_request:
  push:

jobs:
  upx:
    runs-on: ubuntu-latest
    steps:
      -
        name: Checkout
        uses: actions/checkout@v1
      -
        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: 3.95
file String File to compress
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.