-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a78a381
commit 8576035
Showing
3 changed files
with
31 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.