MCPcopy Index your code
hub / github.com/crazy-max/ghaction-upx

github.com/crazy-max/ghaction-upx @v4.0.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v4.0.0 ↗ · + Follow
12 symbols 44 edges 8 files 0 documented · 0%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

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@v4
      -
        name: Run UPX
        uses: crazy-max/ghaction-upx@v3
        with:
          version: latest
          files: |
            ./bin/*.exe
          args: -fq

If you just want to install UPX:

name: upx

on:
  push:

jobs:
  upx:
    runs-on: ubuntu-latest
    steps:
      -
        name: Checkout
        uses: actions/checkout@v4
      -
        name: Install UPX
        uses: crazy-max/ghaction-upx@v3
        with:
          install-only: true
      -
        name: UPX version
        run: upx --version

Customizing

inputs

The 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
args String Arguments to pass to UPX
install-only String false Just install 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. 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! :pray:

License

MIT. See LICENSE for more details.

Extension points exported contracts — how you extend this code

GitHubRelease (Interface)
(no doc)
src/installer.ts
Inputs (Interface)
(no doc)
src/context.ts

Core symbols most depended-on inside this repo

getName
called by 2
src/installer.ts
getRelease
called by 1
src/installer.ts
getInputList
called by 1
src/context.ts
run
called by 1
src/main.ts
getUPX
called by 0
src/installer.ts
getInputs
called by 0
src/context.ts
asyncForEach
called by 0
src/context.ts
resolvePaths
called by 0
src/context.ts

Shape

Function 10
Interface 2

Languages

TypeScript100%

Modules by API surface

src/context.ts5 symbols
src/installer.ts4 symbols
tests/context.test.ts2 symbols
src/main.ts1 symbols

For agents

$ claude mcp add ghaction-upx \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page