ghaction-upx/action.yml

22 lines
495 B
YAML
Raw Normal View History

2020-01-08 14:26:34 -07:00
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
2020-01-17 01:48:20 -07:00
name: 'UPX GitHub Action'
2020-01-08 14:26:34 -07:00
description: 'GitHub Action for UPX, the Ultimate Packer for eXecutables'
author: 'crazy-max'
branding:
color: 'yellow'
icon: 'trending-down'
inputs:
version:
description: 'UPX version. Example: 3.95'
default: 'latest'
file:
description: 'File to compress'
required: true
args:
description: 'Arguments to pass to UPX'
runs:
using: 'node12'
main: 'lib/main.js'