From 6d906911cde7d84aedcb3323473087b689c8352f Mon Sep 17 00:00:00 2001 From: Brian Ingenito Date: Mon, 3 Feb 2025 09:49:24 -0500 Subject: [PATCH] Remove publish condition Remove publish condition dependent on now removed github-action-npm-release step. Since we are manually invoking this action instead of depending on version changes it is not necessary. --- .github/workflows/create-release.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/create-release.yaml b/.github/workflows/create-release.yaml index da81c55..da332c4 100644 --- a/.github/workflows/create-release.yaml +++ b/.github/workflows/create-release.yaml @@ -27,7 +27,6 @@ jobs: run: npm ci && npm run build-release - name: Publish - if: steps.release.outputs.released == 'true' run: npm publish --provenance --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}