From 105491581a1c85594f21646bffa8f4eb363a9820 Mon Sep 17 00:00:00 2001 From: Patrick Murphy Date: Thu, 5 Feb 2026 14:38:02 -0500 Subject: [PATCH] Debugging for NPM publish --- .github/workflows/create-release-transactional.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/create-release-transactional.yml b/.github/workflows/create-release-transactional.yml index 9c6b791..e86cae0 100644 --- a/.github/workflows/create-release-transactional.yml +++ b/.github/workflows/create-release-transactional.yml @@ -456,6 +456,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GIT_HUB_TOKEN }} SPEC_VERSION: ${{ needs.validate.outputs.version }} + continue-on-error: true # temp - name: Publish → npm → transactional-node if: env.PUBLISH_EXTERNAL == 'true' @@ -463,6 +464,12 @@ jobs: run: npm publish --access public env: NODE_AUTH_TOKEN: '' # we use OIDC instead of a token, prevent a token from being pulled in from elsewhere, otherwise npm publish fails + + - name: Upload NPM logs + uses: actions/upload-artifact@v4 + with: + name: npm-logs + path: /home/runner/.npm/_logs/ publish-php: runs-on: ubuntu-latest