14 lines
475 B
YAML
14 lines
475 B
YAML
name: version-tag
|
|
description: "Creates a version tag when the 'version' value in 'package.json' has changed and a tag with the version number (including optional prefix) does not already exist."
|
|
author: "Bryce Thorup"
|
|
inputs:
|
|
prefix:
|
|
description: Prefix to be added to version tag
|
|
force_override:
|
|
description: Allows an existing tag to be overridden if set to "true"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- run: $GITHUB_ACTION_PATH/action.sh
|
|
shell: bash
|