Skip to content

Commit

Permalink
chore: restore rp conditionals
Browse files Browse the repository at this point in the history
  • Loading branch information
broofa committed Oct 27, 2024
1 parent 964be22 commit 7d2547e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit 7d2547e

Please sign in to comment.