-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Support multiple schema types #203
Changes from all commits
734a036
8a2bfc3
69fa2a8
323e133
f5a2389
69206c1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ jobs: | |
run: | | ||
VERSION=v${{steps.version_check.outputs.version}} pnpm build | ||
mkdir -p "$GITHUB_WORKSPACE/v${{ steps.version_check.outputs.version }}" | ||
mv schema/* "$GITHUB_WORKSPACE/v${{ steps.version_check.outputs.version }}" | ||
mv schemas/* "$GITHUB_WORKSPACE/v${{ steps.version_check.outputs.version }}" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this is the only change needed here! This has the nice benefit of preserving the old URLs in the format -
and generating new URLs in the format -
|
||
|
||
mkdir -p "$GITHUB_WORKSPACE/v${{ steps.version_check.outputs.version }}/types" | ||
mv types/* "$GITHUB_WORKSPACE/v${{ steps.version_check.outputs.version }}/types" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Required by gts 5.3.1 - https://github.com/google/gts/releases/tag/v5.3.1