From dab001666969ba7bca210b6da8081c7cc1c74eef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20M=C3=B3ricz?= Date: Wed, 19 Feb 2025 21:46:02 +0100 Subject: [PATCH] feat(ci): publish all JS SDK packages --- .github/workflows/publish-js-sdk.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-js-sdk.yml b/.github/workflows/publish-js-sdk.yml index 6d380203..7284d0dd 100644 --- a/.github/workflows/publish-js-sdk.yml +++ b/.github/workflows/publish-js-sdk.yml @@ -23,5 +23,10 @@ jobs: - name: Authenticate run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc - name: Publish - run: npm publish + run: | + npm publish + sed -i 's/"name": "@mendable\/firecrawl-js"/"name": "@mendable\/firecrawl"/g' package.json + npm publish + sed -i 's/"name": "@mendable\/firecrawl-js"/"name": "firecrawl"/g' package.json + npm publish working-directory: ./apps/js-sdk/firecrawl