From 7d2547e3d2f313738c639e5caced1358605a8fe0 Mon Sep 17 00:00:00 2001 From: Robert Kieffer Date: Sun, 27 Oct 2024 09:42:40 -0700 Subject: [PATCH] chore: restore rp conditionals --- .github/workflows/release-please.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index d624dbcd..58014d4d 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -28,20 +28,20 @@ jobs: # Steps below handle publication to NPM - uses: actions/checkout@v4 - # if: ${{ steps.release.outputs.release_created }} + if: ${{ steps.release.outputs.release_created }} - uses: actions/setup-node@v4 with: node-version: 20 registry-url: 'https://registry.npmjs.org' - # if: ${{ steps.release.outputs.release_created }} + if: ${{ steps.release.outputs.release_created }} - run: npm ci - # if: ${{ steps.release.outputs.release_created }} + if: ${{ steps.release.outputs.release_created }} - run: npm test - # if: ${{ steps.release.outputs.release_created }} + if: ${{ steps.release.outputs.release_created }} - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.UUID_NPM_RELEASE_TOKEN}} - # if: ${{ steps.release.outputs.release_created }} + if: ${{ steps.release.outputs.release_created }}