diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 59f6b5a..36d2d3e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -66,8 +66,8 @@ jobs: - name: Build the extension run: npm run build && npm run build:firefox - - name: Package the extension into a zip artifact - run: npm run package && npm run package:firefox + # - name: Package the extension into a zip artifact + # run: npm run package && npm run package:firefox - name: Publish to Extension Store uses: PlasmoHQ/bpp@v3 diff --git a/scripts/client.ts b/scripts/client.ts deleted file mode 100644 index 0719f62..0000000 --- a/scripts/client.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { BskyClient } from "../src/lib/bskyClient" - -const searchBskyUsers = async () => { - const agent = await BskyClient.createAgent({ - identifier: process.env.BSKY_IDENTIFIER as string, - password: process.env.BSKY_PASSWORD as string, - }) - - const result = await agent.searchUser({ - term: "llamaindex", - limit: 3, - }) - - return result -} - -(async () => { - const result = await searchBskyUsers() - console.log(result) -})()