Fix for composite actions not having INPUT_ vars

See: https://github.com/actions/runner/issues/665
This commit is contained in:
Phil Jay
2021-10-22 11:49:04 +11:00
parent f9aea6e594
commit a7121378a5
7 changed files with 19 additions and 12 deletions

View File

@@ -33,9 +33,13 @@ runs:
- id: version-lookup
run: ${{ github.action_path }}/version-lookup.sh
shell: bash
env:
scheme: ${{ inputs.scheme }}
- id: version-increment
run: ${{ github.action_path }}/version-increment.sh
shell: bash
env:
current_version: ${{ steps.version-lookup.outputs.current-version }}
increment: ${{ inputs.increment }}
scheme: ${{ inputs.scheme }}