GitHub Action for UPX, the Ultimate Packer for eXecutables
Go to file
dependabot[bot] acc3d0d5e3
Bump ansi-regex from 5.0.0 to 5.0.1 (#160)
Bumps [ansi-regex](https://github.com/chalk/ansi-regex) from 5.0.0 to 5.0.1.
- [Release notes](https://github.com/chalk/ansi-regex/releases)
- [Commits](https://github.com/chalk/ansi-regex/compare/v5.0.0...v5.0.1)

---
updated-dependencies:
- dependency-name: ansi-regex
  dependency-type: indirect
...

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

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-11-05 07:34:43 +01:00
__tests__ Allow multiple files (#140) 2021-03-27 19:31:20 +01:00
.github Bump codecov/codecov-action from 1 to 2 2021-07-24 00:45:16 +02:00
dist Bump @actions/exec from 1.0.4 to 1.1.0 (#152) 2021-09-07 02:44:52 +02:00
hack Enhance workflow (#141) 2021-03-30 22:40:52 +02:00
src Allow multiple files (#140) 2021-03-27 19:31:20 +01:00
.dockerignore Enhance workflow (#141) 2021-03-30 22:40:52 +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 Allow multiple files (#140) 2021-03-27 19:31:20 +01:00
CHANGELOG.md Update CHANGELOG 2021-03-27 19:34:57 +01:00
dev.Dockerfile Container dev workflow (#139) 2021-03-27 17:45:19 +01:00
docker-bake.hcl Enhance workflow (#141) 2021-03-30 22:40:52 +02:00
jest.config.js Cleanup code and tests 2020-05-07 12:11:19 +02:00
LICENSE 2021 2021-01-06 21:06:40 +01:00
package.json Bump @actions/exec from 1.0.4 to 1.1.0 (#152) 2021-09-07 02:44:52 +02:00
README.md Update README 2021-08-01 05:13:07 +02:00
tsconfig.json Update generated content 2020-10-21 01:53:33 +02:00
yarn.lock Bump ansi-regex from 5.0.0 to 5.0.1 (#160) 2021-11-05 07:34:43 +01:00

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

About

GitHub Action for UPX, the Ultimate Packer for eXecutables.

Screenshot


Usage

name: upx

on:
  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
          files: |
            ./bin/*.exe            
          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
files String Newline-delimited list of path globs for files to compress (required)
args String Arguments to pass to UPX

Limitation

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

Contributing

Want to contribute? Awesome! The most basic way to show your support is to star the project, or to raise issues. If you want to open a pull request, please read the contributing guidelines.

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.