A lexicon-driven AppView for ATProto. happyview.dev
backfill firehose jetstream atproto appview oauth lexicon
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: add npm token to npmrc during CI (for Bun publish)

Trezy 66d30dc6 93b5a5a0

+6 -2
+6 -2
.github/workflows/release-sdk.yml
··· 64 64 - name: Build oauth-client 65 65 run: bun run --filter '@happyview/oauth-client' build 66 66 67 + - name: Configure npm auth for bun publish 68 + run: echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc 69 + 67 70 - name: Release oauth-client 68 71 env: 69 72 GITHUB_TOKEN: ${{ secrets.DISPATCH_GH_TOKEN }} 70 73 NPM_TOKEN: ${{ secrets.NPM_TOKEN }} 71 - BUN_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} 72 74 working-directory: packages/oauth-client 73 75 run: npx semantic-release 74 76 ··· 99 101 - name: Build SDK packages 100 102 run: bun run --filter '@happyview/oauth-*' build 101 103 104 + - name: Configure npm auth for bun publish 105 + run: echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc 106 + 102 107 - name: Release oauth-client-browser 103 108 env: 104 109 GITHUB_TOKEN: ${{ secrets.DISPATCH_GH_TOKEN }} 105 110 NPM_TOKEN: ${{ secrets.NPM_TOKEN }} 106 - BUN_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} 107 111 working-directory: packages/oauth-client-browser 108 112 run: npx semantic-release