Skip to content

Commit 7d2547e

Browse files
committed
chore: restore rp conditionals
1 parent 964be22 commit 7d2547e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release-please.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,20 @@ jobs:
2828

2929
# Steps below handle publication to NPM
3030
- uses: actions/checkout@v4
31-
# if: ${{ steps.release.outputs.release_created }}
31+
if: ${{ steps.release.outputs.release_created }}
3232
- uses: actions/setup-node@v4
3333
with:
3434
node-version: 20
3535
registry-url: 'https://registry.npmjs.org'
36-
# if: ${{ steps.release.outputs.release_created }}
36+
if: ${{ steps.release.outputs.release_created }}
3737

3838
- run: npm ci
39-
# if: ${{ steps.release.outputs.release_created }}
39+
if: ${{ steps.release.outputs.release_created }}
4040

4141
- run: npm test
42-
# if: ${{ steps.release.outputs.release_created }}
42+
if: ${{ steps.release.outputs.release_created }}
4343

4444
- run: npm publish
4545
env:
4646
NODE_AUTH_TOKEN: ${{secrets.UUID_NPM_RELEASE_TOKEN}}
47-
# if: ${{ steps.release.outputs.release_created }}
47+
if: ${{ steps.release.outputs.release_created }}

0 commit comments

Comments
 (0)