mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-08-11 18:08:59 +08:00
fix(ci/js-sdk): properly build SDK before publishing
This commit is contained in:
parent
904e69bfbc
commit
856ec37d4c
60
.github/workflows/publish-js-sdk.yml
vendored
60
.github/workflows/publish-js-sdk.yml
vendored
@ -1,32 +1,34 @@
|
||||
# name: Publish JS SDK
|
||||
name: Publish JS SDK
|
||||
|
||||
# on:
|
||||
# push:
|
||||
# branches:
|
||||
# - main
|
||||
# paths:
|
||||
# - apps/js-sdk/firecrawl/package.json
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- apps/js-sdk/firecrawl/package.json
|
||||
|
||||
# env:
|
||||
# TEST_API_KEY: ${{ secrets.TEST_API_KEY }}
|
||||
env:
|
||||
TEST_API_KEY: ${{ secrets.TEST_API_KEY }}
|
||||
|
||||
# jobs:
|
||||
# publish:
|
||||
# name: Publish
|
||||
# runs-on: ubuntu-latest
|
||||
# steps:
|
||||
# - uses: actions/checkout@v3
|
||||
# - name: Set up Node.js
|
||||
# uses: actions/setup-node@v3
|
||||
# with:
|
||||
# node-version: "20"
|
||||
# - name: Authenticate
|
||||
# run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
|
||||
# - name: 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"/"name": "firecrawl"/g' package.json
|
||||
# npm publish
|
||||
# working-directory: ./apps/js-sdk/firecrawl
|
||||
jobs:
|
||||
publish:
|
||||
name: Publish
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: "20"
|
||||
- name: Authenticate
|
||||
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
|
||||
- name: Publish
|
||||
run: |
|
||||
npm ci
|
||||
npm run build
|
||||
npm publish --access public
|
||||
sed -i 's/"name": "@mendable\/firecrawl-js"/"name": "@mendable\/firecrawl"/g' package.json
|
||||
npm publish --access public
|
||||
sed -i 's/"name": "@mendable\/firecrawl"/"name": "firecrawl"/g' package.json
|
||||
npm publish --access public
|
||||
working-directory: ./apps/js-sdk/firecrawl
|
||||
|
Loading…
x
Reference in New Issue
Block a user