Skip to content

Commit d144e7a

Browse files
committed
Fix validation
1 parent c0f79a8 commit d144e7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/continuous-deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run: echo version=`tar --extract --file=\`ls ./*.tgz\` --to-stdout package/package.json | jq -r .version` > $GITHUB_OUTPUT
6060
- name: Print version
6161
run: echo ${{ steps.get-version.outputs.version }}
62-
- if: ${{ contains(steps.get-version.outputs.version, '-') }}
62+
- if: ${{ !contains(steps.get-version.outputs.version, '-') }}
6363
name: Validate version
6464
run: |
6565
echo Cannot publish production version

0 commit comments

Comments
 (0)