From 8724212aa27db5329ea75f5f2a365fabfbe06fc9 Mon Sep 17 00:00:00 2001 From: cp-dharti-r Date: Thu, 11 Jan 2024 14:43:43 +0530 Subject: [PATCH] MAke true as string --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c302a92..e0a2dca 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -32,7 +32,7 @@ jobs: # Publish only if the vue-file-upload version check passed - name: Publish to npm - if: steps.check_vue_version.outputs.skip_vue_publish != true + if: steps.check_vue_version.outputs.skip_vue_publish != 'true' run: | cd vue npm publish --access public @@ -65,7 +65,7 @@ jobs: # Publish only if the react-file-upload version check passed - name: Publish to npm - if: steps.check_react_version.outputs.skip_react_publish != true + if: steps.check_react_version.outputs.skip_react_publish != 'true' run: | cd react npm publish --access public