Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,17 @@ jobs:
env:
CI: true
- name: Run pnpm publish
run: pnpm -r publish --access=public --no-git-checks
run: pnpm -r publish --dry-run --access=public --no-git-checks
env:
CI: true
NODE_AUTH_TOKEN: ${{ secrets.CI_NPM_REGISTRY }}
- name: Push tags
- name: Get token
id: get_token
uses: tibdex/github-app-token@v1
with:
private_key: ${{ secrets.APP_PEM }}
app_id: ${{ secrets.APP_ID }}
- name: Push versions, changelog and tags
run: git push --atomic origin main $(git tag -l)
env:
GITHUB_TOKEN: ${{ steps.get_token.outputs.token }}
1 change: 1 addition & 0 deletions packages/core-js-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ npm install @descope/core-js-sdk
import createSdk from '@descope/core-js-sdk';

const myProjectId = 'xxx';

const sdk = createSdk({ projectId: myProjectId });

const loginId = 'loginId';
Expand Down