Skip to content

Commit

Permalink
Fix syntax in action.yml (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
shore authored Apr 8, 2024
1 parent f20e9ab commit c01f555
Showing 1 changed file with 4 additions and 16 deletions.
20 changes: 4 additions & 16 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ inputs:
description: 'Binary location to package.'
default: ''
required: false
bin_path:
description: 'Path to install the binary at'
default: '/usr/bin'
required: false
config_dir:
description: 'Directory of configs in desired filesystem structure.'
default: ''
Expand Down Expand Up @@ -91,22 +95,6 @@ inputs:

runs:
using: composite
env:
INPUT_NAME: ${{ inputs.name }}
INPUT_ARCH: ${{ inputs.arch }}
INPUT_VERSION: ${{ inputs.version }}
INPUT_MAINTAINER: ${{ inputs.maintainer }}
INPUT_VENDOR: ${{ inputs.vendor }}
INPUT_DESCRIPTION: ${{ inputs.description }}
INPUT_HOMEPAGE: ${{ inputs.homepage
INPUT_LICENSE: ${{ inputs.license }}
INPUT_DEPENDS: ${{ inputs.depends }}
INPUT_BINARY: ${{ inputs.binary }}
INPUT_CONFIG_DIR: ${{ inputs.config_dir }}
INPUT_PREINSTALL: ${{ inputs.preinstall }}
INPUT_POSTINSTALL: ${{ inputs.postinstall }}
INPUT_PREREMOVE: ${{ inputs.preremove }}
INPUT_POSTREMOVE: ${{ inputs.postremove }}
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit c01f555

Please sign in to comment.