mirror of
https://github.com/reecetech/version-increment.git
synced 2025-12-21 06:25:44 +00:00
Update to use brace variable referencing
https://stackoverflow.com/a/8748880
This commit is contained in:
@@ -80,7 +80,7 @@ runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- id: version-lookup
|
||||
run: $GITHUB_ACTION_PATH/version-lookup.sh
|
||||
run: "${GITHUB_ACTION_PATH}/version-lookup.sh"
|
||||
shell: bash
|
||||
env:
|
||||
github_token: ${{ github.token }}
|
||||
@@ -88,7 +88,7 @@ runs:
|
||||
use_api: ${{ inputs.use_api }}
|
||||
|
||||
- id: version-increment
|
||||
run: $GITHUB_ACTION_PATH/version-increment.sh
|
||||
run: "${GITHUB_ACTION_PATH}/version-increment.sh"
|
||||
shell: bash
|
||||
env:
|
||||
current_version: ${{ steps.version-lookup.outputs.CURRENT_VERSION }}
|
||||
|
||||
Reference in New Issue
Block a user