cli/.github/actions/upload-msi/action.yml
Mislav Marohnić a34d07aecb Improve .msi asset handling in upload-msi action
- Allow .msi file to be specified via input to action
- Delete obsolete .exe file after uploading .msi
2020-01-09 15:02:48 +01:00

9 lines
224 B
YAML

name: 'Upload MSI'
description: 'Upload an additional asset to a release'
inputs:
msi-file:
description: 'path to the MSI file to attach to a release'
required: true
runs:
using: 'node12'
main: 'dist/index.js'