Skip to content

Commit d440e08

Browse files
committed
chore: fix typo
1 parent 6eb7552 commit d440e08

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release-please.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,24 +21,24 @@ jobs:
2121
# The logic below handles the npm publication:
2222
- name: Checkout Repository
2323
uses: actions/checkout@v4
24-
if: ${{ steps.release.outputs.release_created }}
24+
if: ${{ steps.release.outputs.releases_created }}
2525
- name: Install pnpm
2626
uses: pnpm/action-setup@v4
27-
if: ${{ steps.release.outputs.release_created }}
27+
if: ${{ steps.release.outputs.releases_created }}
2828
- name: Setup Node
2929
uses: actions/setup-node@v4
30-
if: ${{ steps.release.outputs.release_created }}
30+
if: ${{ steps.release.outputs.releases_created }}
3131
with:
3232
node-version: 20
3333
registry-url: "https://registry.npmjs.org"
3434
- name: Build Packages
35-
if: ${{ steps.release.outputs.release_created }}
35+
if: ${{ steps.release.outputs.releases_created }}
3636
run: |
3737
pnpm install
3838
pnpm build
3939
4040
# Release Please has already incremented versions and published tags, so we just
4141
# need to publish all unpublished versions to NPM here
4242
- name: Publish to NPM
43-
if: ${{ steps.release.outputs.release_created }}
43+
if: ${{ steps.release.outputs.releases_created }}
4444
run: pnpm -r publish --access public --no-git-checks

0 commit comments

Comments
 (0)