Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
pellicceama committed Jan 21, 2025
1 parent a78a381 commit 8576035
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-oint-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
# run: pnpm run test::ci

- name: Run build for all packages except website
run: pnpm turbo run build --filter '!website'
run: pnpm turbo run build --filter 'cli'

- name: Run download latest openint openapi spec
run: |
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
cd sdks/sdk-openint
# Store new version for commit message
NEW_VERSION=$(npm version patch)
echo "new_version=${NEW_VERSION}" >> "$GITHUB_OUTPUT"
echo "new_version=$NEW_VERSION" >> $GITHUB_ENV
cd ../..
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
pnpm -r publish --no-git-checks
Expand All @@ -115,7 +115,7 @@ jobs:
git config --global user.name "opensdk-bot"
git config --global user.email "[email protected]"
git add sdks/sdk-openint/
git commit -m "chore(sdk-openint): ${{ steps.publish.outputs.new_version }} release"
git commit -m "chore(sdk-openint): ${{ env.new_version }} release"
git push origin main
- name: Send Slack notification for job status
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
</a>
</p>


OpenSDKs is maintained by the [OpenInt](https://openint.dev) team. We just participated [Mega Launch Week Dec 2–6](https://launchweek.dev/lw/MEGA). Check out our [announcement blogpost](https://openint.dev/launch-week/introducing-opensdks/) for OpenSDKs.

OpenSDKs is a repository of type-safe and standardized SDKs for all your APIs - powered by a single lightweight and extensible `runtime` that embraces Web Standards and HTTP, and a `cli` that can generate a custom SDKs from any OpenAPI spec.
Expand Down Expand Up @@ -464,7 +463,8 @@ On the other hand OpenSDKs is most valuable when you are working with multiple 3
Or use this single command

```
SDK=sdk-qbo && \
SDK=sdk-openint && \
turbo run build --filter 'cli' && \
turbo run download --filter $SDK && \
turbo run generate --filter $SDK && \
turbo run build --filter $SDK
Expand Down
33 changes: 26 additions & 7 deletions sdks/sdk-openint/openint.oas.types.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8576035

Please sign in to comment.