Skip to content
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: Build Airbyte Protocol js-schema files for use in schemastore #64

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/actions/publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ runs:
TWINE_PASSWORD: ${{ inputs.twine_password }}
TWINE_USERNAME: ${{ inputs.twine_username }}

# github runners already come with NPM and node
# js/ts: github runners already come with NPM and node
- name: Generate Typescript Protocol Classes
shell: bash
run: protocol-models/bin/generate-typescript-classes-docker.sh
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/pull-request-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,14 @@ jobs:

- name: Test npm publish
run: cd protocol-models/typescript && npm publish --dry-run

# schemastore
- name: Generate schemastore files
shell: bash
run: protocol-models/bin/generate-schemastore-docker.sh

- name: commit new schemastore files
run: |
git add jsonschema/*
git commit -m "update schemastore files"
git push
Loading