mirror of
https://github.com/reecetech/version-increment.git
synced 2025-12-21 14:35: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"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
- id: version-lookup
|
- id: version-lookup
|
||||||
run: $GITHUB_ACTION_PATH/version-lookup.sh
|
run: "${GITHUB_ACTION_PATH}/version-lookup.sh"
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
github_token: ${{ github.token }}
|
github_token: ${{ github.token }}
|
||||||
@@ -88,7 +88,7 @@ runs:
|
|||||||
use_api: ${{ inputs.use_api }}
|
use_api: ${{ inputs.use_api }}
|
||||||
|
|
||||||
- id: version-increment
|
- id: version-increment
|
||||||
run: $GITHUB_ACTION_PATH/version-increment.sh
|
run: "${GITHUB_ACTION_PATH}/version-increment.sh"
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
current_version: ${{ steps.version-lookup.outputs.CURRENT_VERSION }}
|
current_version: ${{ steps.version-lookup.outputs.CURRENT_VERSION }}
|
||||||
|
|||||||
Reference in New Issue
Block a user