From 364c63d22a2240019475982223e692adf1baeec4 Mon Sep 17 00:00:00 2001 From: Craig Colegrove Date: Tue, 13 Jan 2026 13:50:16 -0800 Subject: [PATCH] Fix bug with typescript-release.yaml --- .github/workflows/typescript-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/typescript-release.yaml b/.github/workflows/typescript-release.yaml index c58a811..c62c05e 100644 --- a/.github/workflows/typescript-release.yaml +++ b/.github/workflows/typescript-release.yaml @@ -46,7 +46,7 @@ jobs: echo "/usr/local/bin" >> $GITHUB_PATH - run: yarn - name: Pre-publish steps - if: ${{ inputs.pre_publish_steps }} != "" + if: inputs.pre_publish_steps != '' run: ${{inputs.pre_publish_steps}} - run: npm publish ${{ inputs.add_access_public && '--access public' || '' }} working-directory: ${{ inputs.publish_working_directory }}