mirror of
https://github.com/reecetech/version-increment.git
synced 2025-12-21 06:25:44 +00:00
Fix for composite actions not having INPUT_ vars
See: https://github.com/actions/runner/issues/665
This commit is contained in:
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user