Skip to content

Commit

Permalink
fix: config typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bass-dandy committed Jun 19, 2023
1 parent e335feb commit 5b3d036
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ jobs:
# build and deploy gh pages for simpai release
- run: pnpm build
if: ${{ steps.release.outputs['packages/simpai--release-created'] }}
if: ${{ steps.release.outputs['packages/simpai--release_created'] }}
- name: Deploy
if: ${{ steps.release.outputs['packages/simpai--release-created'] }}
if: ${{ steps.release.outputs['packages/simpai--release_created'] }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./packages/simpai/build

# build and publish npm package for other releases
- name: Publish
if: ${{ steps.release.outputs.releases_created && !steps.release.outputs['packages/simpai--release-created'] }}
if: ${{ steps.release.outputs.releases_created && !steps.release.outputs['packages/simpai--release_created'] }}
run: pnpm publish -r --no-git-checks --filter=!simpai
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 5b3d036

Please sign in to comment.