Skip to content

Commit 3bd7aee

Browse files
authored
Fix syntax error running in GitHub Actions (#57)
1 parent 87a394d commit 3bd7aee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
- name: Publish NPM release
126126
run: |
127127
# If it's not a simple 1.2.3 version, then it's a prerelease of some kind.
128-
if ! [[ ${TAG} =~ ^[0-9.]*$\ ]] ; then
128+
if ! [[ ${TAG} =~ ^[0-9.]*$ ]] ; then
129129
PRE="--prerelease"
130130
fi
131131
node publish.js --publish "${PRE}"

0 commit comments

Comments
 (0)