GitHub Action for UPX, the Ultimate Packer for eXecutables
Go to file
dependabot[bot] c4d364e37a
Bump @actions/core from 1.9.1 to 1.10.0
Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.9.1 to 1.10.0.
- [Release notes](https://github.com/actions/toolkit/releases)
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core)

---
updated-dependencies:
- dependency-name: "@actions/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-09-30 04:09:39 +00:00
__tests__ update dev dependencies and workflow (#168) 2022-04-24 20:30:15 +02:00
.github Bump actions to latest major 2022-05-26 23:33:59 +02:00
dist Bump @actions/core from 1.6.0 to 1.9.1 (#181) 2022-08-24 12:58:37 +02:00
src update dev dependencies and workflow (#168) 2022-04-24 20:30:15 +02:00
.dockerignore Enhance workflow (#141) 2021-03-30 22:40:52 +02:00
.editorconfig Initial commit 2020-01-08 22:26:34 +01:00
.eslintrc.json update dev dependencies and workflow (#168) 2022-04-24 20:30:15 +02: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 Node 16 as default runtime (#169) 2022-05-26 11:02:01 +02:00
CHANGELOG.md Update CHANGELOG 2022-05-26 23:33:50 +02:00
codecov.yml update dev dependencies and workflow (#168) 2022-04-24 20:30:15 +02:00
dev.Dockerfile Node 16 as default runtime (#169) 2022-05-26 11:02:01 +02:00
docker-bake.hcl update dev dependencies and workflow (#168) 2022-04-24 20:30:15 +02:00
jest.config.ts update dev dependencies and workflow (#168) 2022-04-24 20:30:15 +02:00
LICENSE Update LICENSE 2022-04-24 20:20:55 +02:00
package.json Bump @actions/core from 1.9.1 to 1.10.0 2022-09-30 04:09:39 +00:00
README.md Update README 2022-05-26 23:59:55 +02:00
tsconfig.json update dev dependencies and workflow (#168) 2022-04-24 20:30:15 +02:00
yarn.lock Bump @actions/core from 1.9.1 to 1.10.0 2022-09-30 04:09:39 +00:00

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

About

GitHub Action for UPX, the Ultimate Packer for eXecutables.

If you are interested, check out my other :octocat: GitHub Actions!

Screenshot


Usage

name: upx

on:
  push:

jobs:
  upx:
    runs-on: ubuntu-latest
    steps:
      -
        name: Checkout
        uses: actions/checkout@v3
      -
        name: Run UPX
        uses: crazy-max/ghaction-upx@v2
        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.