We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 90a2724 + 12c0703 commit 666df24Copy full SHA for 666df24
.github/actions/check-release/action.yml
@@ -25,6 +25,12 @@ runs:
25
export RH_DRY_RUN=true
26
export RH_REF=${GITHUB_REF}
27
28
+ # check for npm-only package
29
+ if [[ ! -f setup.py && -f package.json ]]; then
30
+ export RH_VERSION_SPEC=patch
31
+ export RH_POST_VERSION_SPEC=
32
+ fi
33
+
34
if [ ! -z ${GITHUB_BASE_REF} ]; then
35
echo "Using GITHUB_BASE_REF: ${GITHUB_BASE_REF}"
36
export RH_BRANCH=${GITHUB_BASE_REF}
0 commit comments